diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-06-07 12:09:05 +0000 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-06-07 12:09:05 +0000 |
commit | fb8b8cada7bad73acf936c1dee2e7b1be64e3513 (patch) | |
tree | 621ff784443f3547ab1f4e663246d0b748dd5c9f /p11-kit | |
parent | 7c410200143b72a5976d228d75aab59f8b965fe9 (diff) |
Fix URI parsing memory leaks.
Diffstat (limited to 'p11-kit')
-rw-r--r-- | p11-kit/uri.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/p11-kit/uri.c b/p11-kit/uri.c index 36fae18..4f8e251 100644 --- a/p11-kit/uri.c +++ b/p11-kit/uri.c @@ -1324,6 +1324,7 @@ p11_kit_uri_free (P11KitUri *uri) for (i = 0; i < uri->n_attributes; ++i) free (uri->attributes[i].pValue); + free (uri->pinfile); free (uri); } |