Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Soloviev <EXT-Alexey.Soloviev@nokia.com>2011-03-06 20:21:07 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-06 20:21:07 +0300
commit41478ade4f28cbacd954c9663d851c374d33f6b9 (patch)
treec4ffbe81771122a2f063a4a199ea306c6aea65b1 /coreutils/tr.c
parent4a2a86d5e7e7bf284a31af604a738dfa1f1a2240 (diff)
tr: free allocated memory in tr if CLEANUP enabled
Signed-off-by: Alexey Soloviev <EXT-Alexey.Soloviev@nokia.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index 21d77ef95..5b2b9a9a4 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -324,5 +324,11 @@ int tr_main(int argc UNUSED_PARAM, char **argv)
str2[out_index++] = last = coded;
}
+ if (ENABLE_FEATURE_CLEAN_UP) {
+ free(vector);
+ free(str2);
+ free(str1);
+ }
+
return EXIT_SUCCESS;
}