From 5fe5480ba236fe711c40c3b164e0b3e75229e323 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 22 Jan 2005 16:07:10 +0000 Subject: [PATCH] Avoid a compiler warning (and a potential segfault). --- src/common/segmentinfo_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/segmentinfo_parser.cpp b/src/common/segmentinfo_parser.cpp index 0c8cd3654..3d7094642 100644 --- a/src/common/segmentinfo_parser.cpp +++ b/src/common/segmentinfo_parser.cpp @@ -105,7 +105,7 @@ parse_xml_segmentinfo(mm_text_io_c *in, if (error.length() > 0) throw error_c(error); - fix_mandatory_segmentinfo_elements(m); + fix_mandatory_segmentinfo_elements(info); return info; }