Add missing initialization of table pointer in blob_init().
authorAndre Noll <maan@systemlinux.org>
Wed, 24 Oct 2007 10:47:09 +0000 (12:47 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 24 Oct 2007 10:47:09 +0000 (12:47 +0200)
blob.c

diff --git a/blob.c b/blob.c
index 3539453ec0e5a174e0e962ae3b84946e4f837f25..72e4a55b30ffe4ca3e13a79f866f7f2a27f67baf 100644 (file)
--- a/blob.c
+++ b/blob.c
@@ -534,6 +534,7 @@ static int blob_open(struct osl_table **table,
                t->close = table_name ## _close; \
                t->create = table_name ## _create;\
                t->event_handler = table_name ##_event_handler; \
+               table_name ## _table = NULL; \
        }