This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/360
-- gerrit commit 34a3c4a11f7dee70a7ae845dd74d0768a5642c2f Author: Spencer Oliver <[email protected]> Date: Mon Jan 9 21:43:27 2012 +0000 xsvf: fix clang warning clang reports 'Function call argument is an uninitialized value'. Change-Id: I50f4a7932b59930a5f1e3ece70b12c59e85ea3c6 Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index 9fda8e3..5699d57 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -189,7 +189,7 @@ COMMAND_HANDLER(handle_xsvf_command) tap_state_t xenddr = TAP_IDLE; uint8_t opcode; - uint8_t uc; + uint8_t uc = 0; long file_offset = 0; int loop_count = 0; -- ------------------------------------------------------------------------------ Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops. With this all-in-one solution, easily deploy virtual desktops for less than the cost of PCs and save 60% on VDI infrastructure costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
