diff options
| author | 2010-06-17 14:52:24 +0000 | |
|---|---|---|
| committer | 2010-06-17 14:52:24 +0000 | |
| commit | d86a7094cb29cfaa7583be6ceeef9be2c696a261 (patch) | |
| tree | a5d42487aa48de04b0d75f728a4d644a776c81d1 /src/lib | |
| parent | 9318aa61cfa2b393f59e90d052bbac3ee4d78fc1 (diff) | |
osd_free should be used instead of free (no whatsnew)
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util/zippath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/zippath.c b/src/lib/util/zippath.c index e46f8710d6e..c2041072550 100644 --- a/src/lib/util/zippath.c +++ b/src/lib/util/zippath.c @@ -359,7 +359,7 @@ done: if (temp2 != NULL) astring_free(temp2); if (alloc_fullpath != NULL) - free(alloc_fullpath); + osd_free(alloc_fullpath); return filerr; } |
