Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 274214
Collapse All | Expand All

(-)work/sqlitebrowser/sqlitebrowser/sqlbrowser_util.c.orig (-2 / +2 lines)
Lines 391-397 Link Here
391
}
391
}
392
392
393
393
394
char *getline(FILE *in){
394
char *sqlbrowser_getline(FILE *in){
395
  char *zLine;
395
  char *zLine;
396
  int nLine;
396
  int nLine;
397
  int n;
397
  int n;
Lines 435-441 Link Here
435
  char * zErrMsg = 0;
435
  char * zErrMsg = 0;
436
  int nSql = 0;
436
  int nSql = 0;
437
  int rc;
437
  int rc;
438
  while((zLine = getline(in))!=0 ){
438
  while((zLine = sqlbrowser_getline(in))!=0 ){
439
    if( (zSql==0 || zSql[0]==0) && _all_whitespace(zLine) ) continue;
439
    if( (zSql==0 || zSql[0]==0) && _all_whitespace(zLine) ) continue;
440
	(*lineErr)++;
440
	(*lineErr)++;
441
    if( zSql==0 ){
441
    if( zSql==0 ){

Return to bug 274214