diff options
author | Nick Clifton <nickc@redhat.com> | 2022-05-19 15:05:12 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-05-19 15:05:12 +0100 |
commit | 95086e1e54a726a0d7671d70640bc76e4fddf198 (patch) | |
tree | 8e8283dde5b40f111b4f6b834ddd304821c8f22d /binutils/windmc.c | |
parent | 18bd4744611b97e9fca41f97b871eea7bd66bd3e (diff) | |
download | binutils-95086e1e54a726a0d7671d70640bc76e4fddf198.zip binutils-95086e1e54a726a0d7671d70640bc76e4fddf198.tar.gz binutils-95086e1e54a726a0d7671d70640bc76e4fddf198.tar.bz2 |
Fix potentially uninitialised variables in the Windows tools
Diffstat (limited to 'binutils/windmc.c')
-rw-r--r-- | binutils/windmc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/windmc.c b/binutils/windmc.c index f9a4169..b47da91 100644 --- a/binutils/windmc.c +++ b/binutils/windmc.c @@ -338,7 +338,7 @@ mc_add_node_lang (mc_node *root, const mc_keyword *lang, rc_uint_type vid) static char * convert_unicode_to_ACP (const unichar *usz) { - char *s; + char *s = NULL; rc_uint_type l; if (! usz) @@ -607,7 +607,7 @@ mc_generate_bin_item (mc_node_lang *n, rc_uint_type *res_len) else { rc_uint_type txt_len, l; - char *cvt_txt; + char *cvt_txt = NULL; codepage_from_unicode( &l, n->message, &cvt_txt, n->lang->lang_info.wincp); if (! cvt_txt) @@ -1105,7 +1105,7 @@ main (int argc, char **argv) /* Load the input file and do code page transformations to UTF16. */ { - unichar *u; + unichar *u = NULL; rc_uint_type ul; char *buff; bfd_size_type flen; |