Commit e899f0c4e0bfea5c870b94ee31409097b4682480

Ryan C. Gordon 2013-11-14T14:42:20

Haiku: fixed uninitialized variable.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/haiku/SDL_BWin.h b/src/video/haiku/SDL_BWin.h
index ffb4263..a0fa3e7 100644
--- a/src/video/haiku/SDL_BWin.h
+++ b/src/video/haiku/SDL_BWin.h
@@ -83,6 +83,8 @@ class SDL_BWin:public BDirectWindow
         _trash_window_buffer = false;
         _buffer_locker = new BLocker();
         _bitmap = NULL;
+        _clips = NULL;
+
 #ifdef DRAWTHREAD
         _draw_thread_id = spawn_thread(BE_DrawThread, "drawing_thread",
                             B_NORMAL_PRIORITY, (void*) this);