diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-06-01 13:47:20 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-06-01 14:05:43 -0500 |
commit | 7995258761f2da70878afbe62d1b5633593a584a (patch) | |
tree | f39f3c6c7f75d806dc672068642f60b76ff7a85b | |
parent | dc17c86a1930ada341b1977a93bd821b1f152777 (diff) | |
download | ofono-7995258761f2da70878afbe62d1b5633593a584a.tar.bz2 |
Squish another uninitialized warning
-rw-r--r-- | src/call-forwarding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/call-forwarding.c b/src/call-forwarding.c index d7316bc5..772985d6 100644 --- a/src/call-forwarding.c +++ b/src/call-forwarding.c @@ -930,7 +930,7 @@ static gboolean cf_ss_control(struct ofono_modem *modem, int cf_type; DBusMessage *reply; struct ofono_phone_number ph; - void *operation; + void *operation = NULL; /* Before we do anything, make sure we're actually initialized */ if (!cf) |