This is an automated email from Gerrit.

?yvind Harboe (oyvindhar...@gmail.com) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/129

-- gerrit

commit c5e0a7c0a539e0fcacd2fd1333dda5adfb5e60cf
Author: Øyvind Harboe <oyvind.har...@zylin.com>
Date:   Thu Oct 27 19:27:04 2011 +0200

    clang: fix warning about missing check for return value
    
    Change-Id: I0c6b6b8d1f0c30b6a503cb98df30584252bc0ee1
    Signed-off-by: Øyvind Harboe <oyvind.har...@zylin.com>

diff --git a/src/rtos/FreeRTOS.c b/src/rtos/FreeRTOS.c
index 10a9b8c..eeab134 100644
--- a/src/rtos/FreeRTOS.c
+++ b/src/rtos/FreeRTOS.c
@@ -231,7 +231,8 @@ static int FreeRTOS_update_threads( struct rtos *rtos )
        // Find out how many lists are needed to be read from pxReadyTasksLists,
        int64_t max_used_priority = 0;
        retval = target_read_buffer( rtos->target, 
rtos->symbols[FreeRTOS_VAL_uxTopUsedPriority].address, param->pointer_width, 
(uint8_t *)&max_used_priority );
-
+       if (retval != ERROR_OK)
+         return retval;
 
        symbol_address_t* list_of_lists = (symbol_address_t *)malloc( sizeof( 
symbol_address_t ) * ( max_used_priority+1 + 5 ) );
 

-- 
_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to