This is an automated email from Gerrit.

Mathias K?ster (kes...@freenet.de) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/369

-- gerrit

commit 41f0b3e88d158c8ca457bfa62289441783293f6e
Author: Mathias K <kes...@freenet.de>
Date:   Thu Jan 12 17:33:05 2012 +0100

    stlink: handle wrong initialization file if no layout was specified
    
    This patch remove the hardcoded default layout and return an error
    if no layout was specified in the configuration file.
    
    Change-Id: I0e7833faa2dc194e727122840bcbdacd321cc4fd
    Signed-off-by: Mathias K <kes...@freenet.de>

diff --git a/src/jtag/stlink/stlink_layout.c b/src/jtag/stlink/stlink_layout.c
index dfcfbf4..4d510bb 100644
--- a/src/jtag/stlink/stlink_layout.c
+++ b/src/jtag/stlink/stlink_layout.c
@@ -79,7 +79,9 @@ int stlink_layout_init(struct stlink_interface_s *stlink_if)
 {
        LOG_DEBUG("stlink_layout_init");
 
-       stlink_if->layout = &stlink_layouts[0];
-
+       if (stlink_if->layout == NULL) {
+               LOG_ERROR("no layout specified");
+               return ERROR_FAIL;
+       }
        return ERROR_OK;
 }

-- 

------------------------------------------------------------------------------
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to