SDL/src/thread
Eddy Jansson aaee09d6ed Don't do NULL-checks before SDL_free()
Replaces the pattern

  if (ptr) {
    SDL_free(ptr);
  }

with

  SDL_free(ptr);
2025-10-20 00:13:09 -07:00
..
generic Updated copyright for 2025 2025-01-01 07:45:52 -08:00
n3ds Don't do NULL-checks before SDL_free() 2025-10-20 00:13:09 -07:00
ps2 Updated copyright for 2025 2025-01-01 07:45:52 -08:00
psp PSP: Truncate thread name when passing to sceKernelCreateThread 2025-07-09 17:11:26 +02:00
pthread Updated copyright for 2025 2025-01-01 07:45:52 -08:00
vita Updated copyright for 2025 2025-01-01 07:45:52 -08:00
windows Fix support for Windows XP and up (#13904) 2025-09-08 13:00:26 -07:00
SDL_systhread.h Updated copyright for 2025 2025-01-01 07:45:52 -08:00
SDL_thread.c Use new parameter validation macro 2025-09-18 20:58:32 -07:00
SDL_thread_c.h Updated copyright for 2025 2025-01-01 07:45:52 -08:00