From 381e52c3b7b68d1bb5d85665acdb4b33bdf36d68 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 22 Aug 2016 12:44:12 +0100 Subject: [PATCH] trivial: Fix a crash when parsing IHEX files --- libdfu/dfu-format-ihex.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libdfu/dfu-format-ihex.c b/libdfu/dfu-format-ihex.c index 337907936..c5c8b3e41 100644 --- a/libdfu/dfu-format-ihex.c +++ b/libdfu/dfu-format-ihex.c @@ -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: