SDL/src/tray
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
..
cocoa Use new parameter validation macro 2025-09-18 20:58:32 -07:00
dummy Allow building the tray subsystem without the video subsystem 2025-08-27 08:15:24 -07:00
unix Don't do NULL-checks before SDL_free() 2025-10-20 00:13:09 -07:00
windows tray(Win32): re-add the tray icon upon taskbar restart (#13261) 2025-09-22 06:47:25 -07:00
SDL_tray_utils.c tray(Win32): re-add the tray icon upon taskbar restart (#13261) 2025-09-22 06:47:25 -07:00
SDL_tray_utils.h tray(Win32): re-add the tray icon upon taskbar restart (#13261) 2025-09-22 06:47:25 -07:00