From: Rob Landley Date: Mon, 8 Sep 2014 13:51:45 +0000 (-0500) Subject: Fix more memory leaks reported by Ashwini Sharma. X-Git-Tag: 0.5.0~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3edbb571ab5ba1d0c177d5b9bee6c67f021ed06a;p=platform%2Fupstream%2Ftoybox.git Fix more memory leaks reported by Ashwini Sharma. --- diff --git a/toys/posix/cpio.c b/toys/posix/cpio.c index 668f2ee..39fd9c3 100644 --- a/toys/posix/cpio.c +++ b/toys/posix/cpio.c @@ -94,7 +94,10 @@ void cpio_main(void) // Read header and name. xreadall(afd, toybuf, 110); tofree = name = strpad(afd, x8u(toybuf+94), 110); - if (!strcmp("TRAILER!!!", name)) break; + if (!strcmp("TRAILER!!!", name)) { + if (CFG_TOYBOX_FREE) free(tofree); + break; + } // If you want to extract absolute paths, "cd /" and run cpio. while (*name == '/') name++; @@ -121,6 +124,7 @@ void cpio_main(void) } else if (S_ISLNK(mode)) { data = strpad(afd, size, 0); if (!test) err = symlink(data, name); + free(data); // Can't get a filehandle to a symlink, so do special chown if (!err && !getpid()) err = lchown(name, uid, gid); } else if (S_ISREG(mode)) { @@ -249,4 +253,5 @@ void cpio_main(void) xwrite(afd, toybuf, sprintf(toybuf, "070701%040X%056X%08XTRAILER!!!", 1, 0x0b, 0)+4); } + if (TT.archive) xclose(afd); }