diff options
author | Will Thompson <resiak@soc.pidgin.im> | 2007-08-01 21:16:34 +0000 |
---|---|---|
committer | Will Thompson <resiak@soc.pidgin.im> | 2007-08-01 21:16:34 +0000 |
commit | a60d01475870d1fd716d350016b66a20848f0c3f (patch) | |
tree | d0e6236d8f610eef542e86db268159e230f52af1 | |
parent | dccef22dcd2e485a15761a0b35aaec5b99f20cc2 (diff) |
Squash a (correct) warning about an uninitialized variable.
-rw-r--r-- | src/connection-presence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection-presence.c b/src/connection-presence.c index c1ab160..7fc4c51 100644 --- a/src/connection-presence.c +++ b/src/connection-presence.c @@ -228,7 +228,7 @@ _set_own_status (GObject *obj, HazeConnection *self = HAZE_CONNECTION (obj); const char *status_id = NULL; GValue *message_v; - char *message; + char *message = NULL; GList *attrs = NULL; if (status) |