Browse Source

Check return value of SDL_malloc()

(cherry picked from commit a4604cb0d616db97921a2674a63b45f3fdfb81bc)
Mingjie Shen 2 years ago
parent
commit
a688ecd6fa
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/video/SDL_shape.c

+ 5 - 0
src/video/SDL_shape.c

@@ -138,6 +138,11 @@ static SDL_ShapeTree *RecursivelyCalculateShapeTree(SDL_WindowShapeMode mode, SD
     SDL_ShapeTree *result = (SDL_ShapeTree *)SDL_malloc(sizeof(SDL_ShapeTree));
     SDL_Rect next = { 0, 0, 0, 0 };
 
+    if (result == NULL) {
+        SDL_OutOfMemory();
+        return NULL;
+    }
+
     for (y = dimensions.y; y < dimensions.y + dimensions.h; y++) {
         for (x = dimensions.x; x < dimensions.x + dimensions.w; x++) {
             pixel_value = 0;