From 1b5148109a273e7a30255ab3a705ca49f71e046f Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 24 Oct 2007 12:47:09 +0200 Subject: [PATCH] Add missing initialization of table pointer in blob_init(). --- blob.c | 1 + 1 file changed, 1 insertion(+) diff --git a/blob.c b/blob.c index 3539453e..72e4a55b 100644 --- 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; \ } -- 2.39.2