From d81c4be6001a711e9f0dea247f43d8de670bc27f Mon Sep 17 00:00:00 2001
From: Dana Jansens <danakj@orodu.net>
Date: Thu, 31 Jan 2008 10:18:35 -0500
Subject: [PATCH] don't assert when you window_find(0)/dockapp_find(0), just
 return 0

---
 openbox/dock.c   | 1 -
 openbox/window.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/openbox/dock.c b/openbox/dock.c
index e78c2991..adf61e84 100644
--- a/openbox/dock.c
+++ b/openbox/dock.c
@@ -651,7 +651,6 @@ void dock_get_area(Rect *a)
 
 ObDockApp* dock_find_dockapp(Window xwin)
 {
-    g_assert(xwin != None);
     GList *it;
     /* there are never that many dock apps, so we can use a list here instead
        of a hash table */
diff --git a/openbox/window.c b/openbox/window.c
index f094602c..e13638e0 100644
--- a/openbox/window.c
+++ b/openbox/window.c
@@ -76,7 +76,6 @@ ObStackingLayer window_layer(ObWindow *self)
 
 ObWindow* window_find(Window xwin)
 {
-    g_assert(xwin != None);
     return g_hash_table_lookup(window_map, &xwin);
 }