diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2013-09-13 14:32:33 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2013-09-13 14:32:33 +0000 |
| commit | dee0c3e5fdf2562d6c8a69c6b35b7ce33a3a9e9d (patch) | |
| tree | b7973ce2e34681e206ab202f2dadc75ba37fcb64 /src/xml | |
| parent | Merge in fix for critical blocker #166371 (diff) | |
| download | inkscape-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')
| -rw-r--r-- | src/xml/repr-io.cpp | 2 |
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); } } |
