projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5021d6a
)
libfuse: Assign NULL to "old" to avoid free it twice (#522)
author
winndows
<winndows@163.com>
Wed, 1 Jul 2020 05:20:01 +0000
(13:20 +0800)
committer
GitHub
<noreply@github.com>
Wed, 1 Jul 2020 05:20:01 +0000
(06:20 +0100)
Assign NULL to "old" at the first free(), to avoid the possible 2nd free() for it.
Signed-off-by: Liao Pingfang <liao.pingfang@zte.com.cn>
Co-authored-by: Liao Pingfang <liao.pingfang@zte.com.cn>
lib/modules/iconv.c
patch
|
blob
|
history
diff --git
a/lib/modules/iconv.c
b/lib/modules/iconv.c
index eb5edd8ebac3ce602c456a6b1cc859f6a6f857c1..3a4db7c761aa4e7a3382105672bc21c56c65947a 100644
(file)
--- a/
lib/modules/iconv.c
+++ b/
lib/modules/iconv.c
@@
-705,6
+705,7
@@
static struct fuse_fs *iconv_new(struct fuse_args *args,
if (old) {
setlocale(LC_CTYPE, old);
free(old);
+ old = NULL;
}
ic->next = next[0];