summaryrefslogtreecommitdiffstats
path: root/src/xml/repr-io.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2013-09-13 14:32:33 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2013-09-13 14:32:33 +0000
commitdee0c3e5fdf2562d6c8a69c6b35b7ce33a3a9e9d (patch)
treeb7973ce2e34681e206ab202f2dadc75ba37fcb64 /src/xml/repr-io.cpp
parentMerge in fix for critical blocker #166371 (diff)
downloadinkscape-dee0c3e5fdf2562d6c8a69c6b35b7ce33a3a9e9d.tar.gz
inkscape-dee0c3e5fdf2562d6c8a69c6b35b7ce33a3a9e9d.zip
Use g_match_info_free instead of g_match_info_unref
for better Glib compatibility (bzr r12511)
Diffstat (limited to 'src/xml/repr-io.cpp')
-rw-r--r--src/xml/repr-io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml/repr-io.cpp b/src/xml/repr-io.cpp
index 579c7598c..c692e6509 100644
--- a/src/xml/repr-io.cpp
+++ b/src/xml/repr-io.cpp
@@ -226,7 +226,7 @@ int XmlSource::readCb( void * context, char * buffer, int len )
}
g_match_info_next (info, NULL);
}
- g_match_info_unref(info);
+ g_match_info_free(info);
g_regex_unref(regex);
}
}