Mercurial > pidgin
changeset 2456:308f010ed664
[gaim-migrate @ 2469]
hm
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Tue, 09 Oct 2001 16:23:08 +0000 |
parents | 50163c916f9d |
children | e6b9246b33fd |
files | src/gtkspell.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkspell.c Tue Oct 09 01:38:16 2001 +0000 +++ b/src/gtkspell.c Tue Oct 09 16:23:08 2001 +0000 @@ -355,10 +355,11 @@ } if (buf) { - *buf = g_malloc(end - start + 1); + char *tmp = g_malloc(end - start + 1); for (pos = start; pos < end; pos++) - (*buf)[pos-start] = GTK_TEXT_INDEX(gtktext, pos); - (*buf)[pos-start] = 0; + tmp[pos-start] = GTK_TEXT_INDEX(gtktext, pos); + tmp[pos-start] = 0; + *buf = tmp; } if (pstart) *pstart = start;