Ver Fonte

Fixed misuse of entry->size in SDL_TrackAllocation

entry->size is the size of the allocation, not the number of stack frames
Brick há 1 ano atrás
pai
commit
9c2e4f52e6
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/test/SDL_test_memory.c

+ 2 - 2
src/test/SDL_test_memory.c

@@ -161,8 +161,8 @@ static void SDL_TrackAllocation(void *mem, size_t size)
 
         count = CaptureStackBackTrace(1, SDL_arraysize(frames), frames, NULL);
 
-        entry->size = SDL_min(count, MAXIMUM_TRACKED_STACK_DEPTH);
-        for (i = 0; i < entry->size; i++) {
+        count = SDL_min(count, MAXIMUM_TRACKED_STACK_DEPTH);
+        for (i = 0; i < count; i++) {
             char symbol_buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME * sizeof(TCHAR)];
             PSYMBOL_INFO pSymbol = (PSYMBOL_INFO)symbol_buffer;
             DWORD64 dwDisplacement = 0;