diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-15 13:51:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-15 13:51:46 +0200 |
commit | 5c6d5f5316bf625b66d2592bd335de33b54cfed1 (patch) | |
tree | 16a2e6f4d374cf070fe748dbc7cba693ca797a7a /tools.c | |
parent | 9ffe1df62622ca37d126e0f81aea97a515ef0ac4 (diff) | |
download | vdr-5c6d5f5316bf625b66d2592bd335de33b54cfed1.tar.gz vdr-5c6d5f5316bf625b66d2592bd335de33b54cfed1.tar.bz2 |
Fixed handling errors in 'readstring()'
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 1.14 2000/09/09 12:53:34 kls Exp $ + * $Id: tools.c 1.15 2000/09/15 13:30:24 kls Exp $ */ #define _GNU_SOURCE @@ -69,7 +69,7 @@ int readstring(int filedes, char *buffer, int size, bool wait = false) break; // EOF if (n < 0) { LOG_ERROR; - break; + return -1; } rbytes += n; if (rbytes == size) |