Mercurial > pidgin
comparison src/util.c @ 3373:0e79bf1d79ea
[gaim-migrate @ 3392]
Thanks, faceprint, deryni, and sourceo.
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Fri, 02 Aug 2002 21:25:34 +0000 |
| parents | 363af6ce86a8 |
| children | 8fa61405af2b |
comparison
equal
deleted
inserted
replaced
| 3372:12387e02e44c | 3373:0e79bf1d79ea |
|---|---|
| 1130 char *inptr; | 1130 char *inptr; |
| 1131 char *outptr; | 1131 char *outptr; |
| 1132 char *ret; | 1132 char *ret; |
| 1133 | 1133 |
| 1134 if (!str) | 1134 if (!str) |
| 1135 return g_strdup(""); | 1135 return NULL; |
| 1136 buf = g_malloc(strlen(str)*4); | 1136 buf = g_malloc(strlen(str)*4); |
| 1137 insize = strlen(str); | 1137 insize = strlen(str); |
| 1138 inptr = str; | 1138 inptr = str; |
| 1139 outsize = strlen(str)*4; | 1139 outsize = strlen(str)*4; |
| 1140 outptr = buf; | 1140 outptr = buf; |
