Differences From Artifact [78060ac757]:
- File ResultSetView.cpp — part of check-in [97224397c9] at 2016-12-06 15:04:32 on branch trunk — fixing two bugs - View and WritableView support (user: sandro size: 103942)
To Artifact [d7a4a13c17]:
- File ResultSetView.cpp — part of check-in [b3b307832b] at 2017-02-05 19:33:36 on branch trunk — MapView: initial implementation (user: sandro size: 103943)
497 497 ThreadParams.Abort(); 498 498 } 499 499 500 500 const char *MyResultSetView::CleanSqlTail(const char *dirty) 501 501 { 502 502 // strips any leading white-space 503 503 const char *p = dirty; 504 - while (p != '\0') 504 + while (*p != '\0') 505 505 { 506 506 if (*p == ' ') 507 507 { 508 508 p++; 509 509 continue; 510 510 } 511 511 if (*p == '\t')