fix potentially uninitialized variable error in MSVC compile (nw)

This commit is contained in:
smf- 2012-10-11 08:36:00 +00:00
parent 1f92cf5430
commit 6c478282fd

View File

@ -2623,6 +2623,8 @@ static int command_convert(int argc, char *argv[])
if (err != 0)
return 1;
memset(&jed, 0, sizeof(jed));
/* if the source is JED or PLA, convert to binary */
if (src_is_jed || src_is_pla)
{