Procházet zdrojové kódy

Better fix for static analysis issue in SDL_DestroyRenderer().

Follow up fix for Bugzilla #3544.
Ryan C. Gordon před 8 roky
rodič
revize
c1ac4c6835
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      src/render/SDL_render.c

+ 2 - 0
src/render/SDL_render.c

@@ -1938,7 +1938,9 @@ SDL_DestroyRenderer(SDL_Renderer * renderer)
 
     /* Free existing textures for this renderer */
     while (renderer->textures) {
+        SDL_Texture *tex = renderer->textures;
         SDL_DestroyTexture(renderer->textures);
+        SDL_assert(tex != renderer->textures);  /* satisfy static analysis. */
     }
 
     if (renderer->window) {