diff options
author | Aki Niemi <aki.niemi@nokia.com> | 2009-07-07 14:18:11 +0300 |
---|---|---|
committer | Aki Niemi <aki.niemi@nokia.com> | 2009-07-07 14:18:11 +0300 |
commit | 5a093792632d2ac54f7a4fddfecc277f20cf89c2 (patch) | |
tree | 8aa3a2b41e4426517e605c31e1971c536fe3bc4e | |
parent | 360fd4b43b64a32e96fbfa7ed60388e8e0385daa (diff) | |
download | ofono-5a093792632d2ac54f7a4fddfecc277f20cf89c2.tar.bz2 |
Initialize to NULL
-rw-r--r-- | drivers/isimodem/isimodem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isimodem/isimodem.c b/drivers/isimodem/isimodem.c index 3b3d7392..9ea0c210 100644 --- a/drivers/isimodem/isimodem.c +++ b/drivers/isimodem/isimodem.c @@ -78,10 +78,10 @@ enum version_types { INFO_MCUSW = 0x01 }; -static GPhonetNetlink *pn_link; -static struct isi_data *isi; -static GIsiClient *client; -static GSList *pending; +static GPhonetNetlink *pn_link = NULL; +static struct isi_data *isi = NULL; +static GIsiClient *client = NULL; +static GSList *pending = NULL; void dump_msg(const unsigned char *msg, size_t len) { |