Browse Source

Fixed misuse of entry->size in SDL_TrackAllocation

entry->size is the size of the allocation, not the number of stack frames
Brick 1 năm trước cách đây
mục cha
commit
9c2e4f52e6
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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;