Fixed misuse of entry->size in SDL_TrackAllocation

entry->size is the size of the allocation, not the number of stack frames
This commit is contained in:
Brick
2024-04-03 21:25:04 +01:00
committed by Sam Lantinga
parent f18cf7cffb
commit 9c2e4f52e6

View File

@@ -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;