mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-07 15:10:49 +00:00
Fixed size in realloc
This commit is contained in:
parent
5e5f2290f2
commit
b53c35df43
1 changed files with 1 additions and 1 deletions
|
|
@ -799,7 +799,7 @@ SDL_AddEventWatch(SDL_EventFilter filter, void *userdata)
|
|||
if (!SDL_event_watchers_lock || SDL_LockMutex(SDL_event_watchers_lock) == 0) {
|
||||
SDL_EventWatcher *event_watchers;
|
||||
|
||||
event_watchers = SDL_realloc(SDL_event_watchers, (SDL_event_watchers_count + 1) * sizeof(event_watchers));
|
||||
event_watchers = SDL_realloc(SDL_event_watchers, (SDL_event_watchers_count + 1) * sizeof(*event_watchers));
|
||||
if (event_watchers) {
|
||||
SDL_EventWatcher *watcher;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue