Skip to content
Snippets Groups Projects
Commit 17bc9f5d authored by Andrea Zoli's avatar Andrea Zoli
Browse files

Fix getLine().

parent de37d05e
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,7 @@ char* File::getLine() throw(PacketExceptionIO*) ...@@ -126,7 +126,7 @@ char* File::getLine() throw(PacketExceptionIO*)
//char* s = new char[500]; //char* s = new char[500];
static char s[2048]; static char s[2048];
// static unsigned long dimalloc = 0; // static unsigned long dimalloc = 0;
char c; int c;
dword i = 0; dword i = 0;
if(!closed) if(!closed)
...@@ -136,7 +136,6 @@ char* File::getLine() throw(PacketExceptionIO*) ...@@ -136,7 +136,6 @@ char* File::getLine() throw(PacketExceptionIO*)
while( c != '\n' && c != EOF ) while( c != '\n' && c != EOF )
{ {
s[i] = c; s[i] = c;
//printf("%c", c);
i++; i++;
if(i>=2048) if(i>=2048)
throw new PacketExceptionIO("Error: it's impossible to read a line with more of 2048 bytes."); throw new PacketExceptionIO("Error: it's impossible to read a line with more of 2048 bytes.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment