memory: switch loop condition around in blas_memory_free
authorJames Cowgill <james410@cowgill.org.uk>
Thu, 4 May 2017 13:29:48 +0000 (14:29 +0100)
committerJames Cowgill <james410@cowgill.org.uk>
Fri, 5 May 2017 15:01:58 +0000 (16:01 +0100)
Before this commit, the "position < NUM_BUFFERS" loop condition from
blas_memory_free will be completely optimized away by GCC. This is
because the condition can only be false after undefined behavior has
already been invoked (reading past the end of an array). As a
consequence of this bug, GCC also removes the subsequent if statement
and all the code after the error label because all of it is dead.

This commit switches the loop condition around so it works as intended.

driver/others/memory.c

index 0ac44f6..6c62c68 100644 (file)
@@ -1164,8 +1164,8 @@ void blas_memory_free(void *free_area){
   position = 0;
   LOCK_COMMAND(&alloc_lock);
 
-  while ((memory[position].addr != free_area)
-        && (position < NUM_BUFFERS)) position++;
+  while ((position < NUM_BUFFERS) && (memory[position].addr != free_area))
+    position++;
 
   if (memory[position].addr != free_area) goto error;