diff options
author | Rob Landley | 2006-03-28 19:19:19 +0000 |
---|---|---|
committer | Rob Landley | 2006-03-28 19:19:19 +0000 |
commit | 92fff34de606c56a2011140d1915d507820a2f9d (patch) | |
tree | a1a6f080b44218255bcf7b89cf852a40e4a8e751 | |
parent | f0305b7f75714936f87a30cd9c113709a7328446 (diff) | |
download | busybox-92fff34de606c56a2011140d1915d507820a2f9d.zip busybox-92fff34de606c56a2011140d1915d507820a2f9d.tar.gz |
Bernhard Fischer spotted that we shouldn't free fstype if we didn't allocate
it.
-rw-r--r-- | util-linux/mount.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index f0b4d38..1b6ff96 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -548,7 +548,6 @@ clean_up: if (ENABLE_FEATURE_CLEAN_UP) { free(storage_path); free(cmdopts); - free(fstype); } if(rc) |