Mercurial > pidgin.yaz
changeset 23246:1cf1f77169e5
Avoid potentially uninitialized variables
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 29 May 2008 14:48:49 +0000 |
parents | 9a8d1db61062 |
children | 073ae152b481 |
files | libpurple/protocols/oscar/oscar.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c Thu May 29 12:27:27 2008 +0000 +++ b/libpurple/protocols/oscar/oscar.c Thu May 29 14:48:49 2008 +0000 @@ -778,7 +778,7 @@ OscarData *od; PurplePresence *presence = NULL; PurpleStatus *status = NULL; - gchar *message, *itmsurl, *tmp; + gchar *message = NULL, *itmsurl = NULL, *tmp; od = gc->proto_data;