Browse Source

Better fix for static analysis issue in SDL_DestroyRenderer().

Follow up fix for Bugzilla #3544.
Ryan C. Gordon 8 years ago
parent
commit
c1ac4c6835
1 changed files with 2 additions and 0 deletions
  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 */
     /* Free existing textures for this renderer */
     while (renderer->textures) {
     while (renderer->textures) {
+        SDL_Texture *tex = renderer->textures;
         SDL_DestroyTexture(renderer->textures);
         SDL_DestroyTexture(renderer->textures);
+        SDL_assert(tex != renderer->textures);  /* satisfy static analysis. */
     }
     }
 
 
     if (renderer->window) {
     if (renderer->window) {