ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtutil.C (file contents):
Revision 1.11 by root, Mon Jan 3 03:05:47 2011 UTC vs.
Revision 1.13 by root, Mon Feb 21 07:41:03 2011 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtutil.C 2 * File: rxvtutil.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2004-2006 Marc Lehmann <schmorp@schmorp.de>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
74void * 74void *
75rxvt_temp_buf (int len) 75rxvt_temp_buf (int len)
76{ 76{
77 if (len > temp_len) 77 if (len > temp_len)
78 { 78 {
79 free (temp_buf);
79 temp_buf = realloc (temp_buf, len); 80 temp_buf = malloc (len);
80 temp_len = len; 81 temp_len = len;
81 } 82 }
82 83
83 return temp_buf; 84 return temp_buf;
84} 85}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines