summaryrefslogtreecommitdiff
path: root/svdrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'svdrp.c')
-rw-r--r--svdrp.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/svdrp.c b/svdrp.c
index cb9a9351..fe3bcc7c 100644
--- a/svdrp.c
+++ b/svdrp.c
@@ -10,7 +10,7 @@
* and interact with the Video Disk Recorder - or write a full featured
* graphical interface that sits on top of an SVDRP connection.
*
- * $Id: svdrp.c 2.8 2010/01/17 12:23:31 kls Exp $
+ * $Id: svdrp.c 2.9 2011/02/25 14:38:45 kls Exp $
*/
#include "svdrp.h"
@@ -1664,8 +1664,16 @@ bool cSVDRP::Process(void)
}
else {
if (numChars >= length - 1) {
- length += BUFSIZ;
- cmdLine = (char *)realloc(cmdLine, length);
+ int NewLength = length + BUFSIZ;
+ if (char *NewBuffer = (char *)realloc(cmdLine, NewLength)) {
+ length = NewLength;
+ cmdLine = NewBuffer;
+ }
+ else {
+ esyslog("ERROR: out of memory");
+ Close();
+ break;
+ }
}
cmdLine[numChars++] = c;
cmdLine[numChars] = 0;