summaryrefslogtreecommitdiff
path: root/source3/utils/make_unicodemap.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-05-01 19:43:50 +0000
committerJeremy Allison <jra@samba.org>2000-05-01 19:43:50 +0000
commit830a9e571eee5330097376e94af7dc0f2d5f2f02 (patch)
tree7ed942dfbf735b7ad5e16837f79ca6930ddf2fcf /source3/utils/make_unicodemap.c
parent5fb473fc758b5fbc1145c00dc9b95567107afd5c (diff)
downloadsamba-830a9e571eee5330097376e94af7dc0f2d5f2f02.tar.gz
samba-830a9e571eee5330097376e94af7dc0f2d5f2f02.tar.bz2
samba-830a9e571eee5330097376e94af7dc0f2d5f2f02.zip
locking/posix.c: Fixed double-free nasty crash bug found by insure.
utils/make_smbcodepage.c: utils/make_unicodemap.c: Insure 'make install' fixes. Jeremy. (This used to be commit 3b25f7368be3877e9ad27498bc9451ec88d4b07f)
Diffstat (limited to 'source3/utils/make_unicodemap.c')
-rw-r--r--source3/utils/make_unicodemap.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/utils/make_unicodemap.c b/source3/utils/make_unicodemap.c
index 76c49361be..ff9bb19b6f 100644
--- a/source3/utils/make_unicodemap.c
+++ b/source3/utils/make_unicodemap.c
@@ -139,6 +139,7 @@ static int do_compile(const char *codepage, const char *input_file, const char *
size_t size = 0;
size_t offset = 0;
char *buf = NULL;
+ char *orig_buf = NULL;
char *output_buf = NULL;
uint16 cp_to_ucs2[65536];
uint16 ucs2_to_cp[65536];
@@ -186,6 +187,8 @@ static int do_compile(const char *codepage, const char *input_file, const char *
num_lines = clean_data( &buf, &size);
+ orig_buf = buf; /* Store for free(). */
+
/*
* Initialize the output data.
*/
@@ -285,7 +288,9 @@ static int do_compile(const char *codepage, const char *input_file, const char *
}
fclose(fp);
-
+
+ free(orig_buf);
+ free(output_buf);
return 0;
}