From 5133931302d1e52a29fab19dee15b439cc259af8 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 12 Dec 2008 09:20:47 +0000 Subject: [PATCH] - Another patch by Attila to fix mingw32 compilation --- src/filterParserThread.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/filterParserThread.h b/src/filterParserThread.h index 71eef1510..bf11da913 100644 --- a/src/filterParserThread.h +++ b/src/filterParserThread.h @@ -250,8 +250,9 @@ class FilterParserThread : public QThread { int getlineInStream(QDataStream& stream, string& name, char delim) { char c; int total_read = 0; + int read; do { - int read = stream.readRawData(&c, 1); + read = stream.readRawData(&c, 1); total_read += read; if(read > 0) { if(c != delim) {