diff options
| author | Xan Lopez <xan@igalia.com> | 2013-03-15 20:02:59 +0800 | 
|---|---|---|
| committer | Xan Lopez <xan@igalia.com> | 2013-03-16 17:34:40 +0800 | 
| commit | fa0f0441530eb12efa92c3dc4c21afdb2a472de6 (patch) | |
| tree | a6a1d5170ac8ac633523af1f1ac5a65d9d75f120 | |
| parent | 603dc8aa51166a7ea6814ca46e3fe8d612f62129 (diff) | |
| download | gsoc2013-epiphany-fa0f0441530eb12efa92c3dc4c21afdb2a472de6.tar.gz gsoc2013-epiphany-fa0f0441530eb12efa92c3dc4c21afdb2a472de6.tar.zst gsoc2013-epiphany-fa0f0441530eb12efa92c3dc4c21afdb2a472de6.zip | |
ephy-bookmarks-export: fix memory leak
| -rw-r--r-- | src/bookmarks/ephy-bookmarks-export.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c index adeea8a51..143dfa002 100644 --- a/src/bookmarks/ephy-bookmarks-export.c +++ b/src/bookmarks/ephy-bookmarks-export.c @@ -435,6 +435,8 @@ out:  		}  	} +	xmlBufferFree (buf); +  	STOP_PROFILER ("Exporting as RDF")  	LOG ("Exporting as RDF %s.", ret >= 0 ? "succeeded" : "FAILED"); | 
