trivial: Fix a crash when parsing IHEX files

This commit is contained in:
Richard Hughes 2016-08-22 12:44:12 +01:00
parent 1d69034f15
commit 381e52c3b7

View File

@ -219,7 +219,6 @@ dfu_firmware_from_ihex (DfuFirmware *firmware,
break;
case DFU_INHX32_RECORD_TYPE_EXTENDED:
addr_high = dfu_firmware_ihex_parse_uint16 (in_buffer, offset+9);
g_error ("set base address %x", addr_high);
addr32 = ((guint32) addr_high << 16) + addr_low;
break;
default: