repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: cc762f6b7c846907ba23c5cd9bd971edf68fa390: path_to: revision_to:
commit cc762f6b7c846907ba23c5cd9bd971edf68fa390 Author: Emanuele GiaquintaDate: Sat Jan 8 10:06:48 2011 +0000 Revert change from 2007-08-27. diff --git a/src/rxvtutil.C b/src/rxvtutil.C
--- a/src/rxvtutil.C
+++ b/src/rxvtutil.C
@@ -76,7 +76,8 @@ rxvt_temp_buf (int len)
{
if (len > temp_len)
{
- temp_buf = realloc (temp_buf, len);
+ free (temp_buf);
+ temp_buf = malloc (len);
temp_len = len;
}
-----END OF PAGE-----