Procházet zdrojové kódy

Fixed memory leak in test harness.

Found by Cppcheck.
Philipp Wiesemann před 10 roky
rodič
revize
4679195dbf
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      src/test/SDL_test_harness.c

+ 1 - 0
src/test/SDL_test_harness.c

@@ -484,6 +484,7 @@ int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *user
         if (suiteFilter == 0 && testFilter == 0) {
             SDLTest_LogError("Filter '%s' did not match any test suite/case.", filter);
             SDLTest_Log("Exit code: 2");
+            SDL_free(failedTests);
             return 2;
         }
     }