Skip to content
Snippets Groups Projects
Commit ae4c2244 authored by oharboe's avatar oharboe
Browse files

Audrius Urmanavičius <didele.deze@gmail.com> Latest source (R2606) does not...

Audrius Urmanavičius <didele.deze@gmail.com> Latest source (R2606) does not compile under Windows+Cygwin - fails with error about possibly uninitialized use of variable 'ch'. 

git-svn-id: svn://svn.berlios.de/openocd/trunk@2612 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 41bb41bb
No related branches found
No related tags found
No related merge requests found
...@@ -656,7 +656,7 @@ static int svf_adjust_array_length(uint8_t **arr, int orig_bit_len, int new_bit_ ...@@ -656,7 +656,7 @@ static int svf_adjust_array_length(uint8_t **arr, int orig_bit_len, int new_bit_
static int svf_copy_hexstring_to_binary(char *str, uint8_t **bin, int orig_bit_len, int bit_len) static int svf_copy_hexstring_to_binary(char *str, uint8_t **bin, int orig_bit_len, int bit_len)
{ {
int i, str_len = strlen(str), str_hbyte_len = (bit_len + 3) >> 2; int i, str_len = strlen(str), str_hbyte_len = (bit_len + 3) >> 2;
uint8_t ch; uint8_t ch = 0;
if (ERROR_OK != svf_adjust_array_length(bin, orig_bit_len, bit_len)) if (ERROR_OK != svf_adjust_array_length(bin, orig_bit_len, bit_len))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment