# HG changeset patch # User Mark Doliner # Date 1265151377 0 # Node ID 816e9b5f3310bf5bcd47e6d3c7083d16480ae05d # Parent 55cda40d5cf4e9da23d6c38b5f97f7ad56390cba We set every field of this struct explicitly when we create it, so don't bother to zero it out diff -r 55cda40d5cf4 -r 816e9b5f3310 libpurple/protocols/oscar/family_oservice.c --- a/libpurple/protocols/oscar/family_oservice.c Tue Feb 02 20:42:00 2010 +0000 +++ b/libpurple/protocols/oscar/family_oservice.c Tue Feb 02 22:56:17 2010 +0000 @@ -323,7 +323,7 @@ struct timeval now; gettimeofday(&now, NULL); - rateclass = g_new0(struct rateclass, 1); + rateclass = g_new(struct rateclass, 1); rateclass->classid = byte_stream_get16(bs); rateclass->windowsize = byte_stream_get32(bs);