From: Paul Fertser Date: Sun, 3 Nov 2013 18:05:26 +0000 (+0400) Subject: jtag: fix support for really long scans X-Git-Tag: v0.8.0-rc1~173 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=56d4a5954808a95257fb4693b3eacd036dfeccde;p=openocd jtag: fix support for really long scans When programming large FPGAs the generated SVF files might contain really long SDR scans. They won't fit in the 1MiB jtag scan page at all, so in this case the allocated page needs to be bigger. The current code was silently corrupting memory. One particular example was sent by Volter targetting XC3S4000. It has an SDR 11316992 bits long, that is 1414624 bytes. Change-Id: I39f18d7e0654f2dbdf37df58c837c9ec1fb2aa2a Reported-by: "Voltner, Jiří" Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/1792 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/jtag/commands.c b/src/jtag/commands.c index 2997d047..5e06840a 100644 --- a/src/jtag/commands.c +++ b/src/jtag/commands.c @@ -109,7 +109,9 @@ void *cmd_queue_alloc(size_t size) if (!*p_page) { *p_page = malloc(sizeof(struct cmd_queue_page)); (*p_page)->used = 0; - (*p_page)->address = malloc(CMD_QUEUE_PAGE_SIZE); + size_t alloc_size = (size < CMD_QUEUE_PAGE_SIZE) ? + CMD_QUEUE_PAGE_SIZE : size; + (*p_page)->address = malloc(alloc_size); (*p_page)->next = NULL; }