diff options
Diffstat (limited to 'package/busybox/patches/430-uniq_memleak.patch')
-rw-r--r-- | package/busybox/patches/430-uniq_memleak.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/patches/430-uniq_memleak.patch b/package/busybox/patches/430-uniq_memleak.patch index 48127a57c..93f60eb00 100644 --- a/package/busybox/patches/430-uniq_memleak.patch +++ b/package/busybox/patches/430-uniq_memleak.patch @@ -8,4 +8,4 @@ + free(s1); } - ++dups; /* note: testing for overflow seems excessive. */ + free((char*)s1); |