# HG changeset patch # User Richard Laager # Date 1129047629 0 # Node ID 925c1960af349c9d16eee845704150eed716ced9 # Parent c36adfe4dc576771adf07b06600dc7dce69f3df5 [gaim-migrate @ 13918] Fixed this: sametime.c: In function 'mw_prpl_set_status': sametime.c:3484: warning: 'message' may be used uninitialized in this function committer: Tailor Script diff -r c36adfe4dc57 -r 925c1960af34 src/protocols/sametime/sametime.c --- a/src/protocols/sametime/sametime.c Tue Oct 11 04:40:28 2005 +0000 +++ b/src/protocols/sametime/sametime.c Tue Oct 11 16:20:29 2005 +0000 @@ -3481,7 +3481,7 @@ static void mw_prpl_set_status(GaimAccount *acct, GaimStatus *status) { GaimConnection *gc; const char *state; - char *message; + char *message = NULL; struct mwSession *session; struct mwUserStatus stat;