Loading client/mysqltest.c +7 −1 Original line number Diff line number Diff line Loading @@ -2562,10 +2562,16 @@ int read_line(char *buf, int size) continue; } /* Line counting is independent of state */ if (c == '\n') { /* Line counting is independent of state */ cur_file->lineno++; /* Convert cr/lf to lf */ if (p != buf && *(p-1) == '\r') *(p-1)= 0; } switch(state) { case R_NORMAL: /* Only accept '{' in the beginning of a line */ Loading Loading
client/mysqltest.c +7 −1 Original line number Diff line number Diff line Loading @@ -2562,10 +2562,16 @@ int read_line(char *buf, int size) continue; } /* Line counting is independent of state */ if (c == '\n') { /* Line counting is independent of state */ cur_file->lineno++; /* Convert cr/lf to lf */ if (p != buf && *(p-1) == '\r') *(p-1)= 0; } switch(state) { case R_NORMAL: /* Only accept '{' in the beginning of a line */ Loading