Adding another null check to prevent another crash
authorTobias Markus <tobbi@mozilla-uk.org>
Thu, 30 Jan 2014 17:22:49 +0000 (18:22 +0100)
committerTobias Markus <tobbi@mozilla-uk.org>
Thu, 30 Jan 2014 17:22:49 +0000 (18:22 +0100)
src/video/video_systems.cpp

index 27fd417..f991ee4 100644 (file)
@@ -153,6 +153,9 @@ VideoSystem::new_surface_data(const Surface &surface)
 void
 VideoSystem::free_surface_data(SurfaceData* surface_data)
 {
+  if(surface_data == null)
+    return;
+
   delete surface_data;
 }