Skip to content
Snippets Groups Projects
Commit a9dabe6d authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed infinite-loop bug.

Rev: lib/modules/Sql.pmod/sql_result.pike:1.3
parent 29c2508f
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: sql_result.pike,v 1.2 1997/03/30 19:07:41 grubba Exp $ * $Id: sql_result.pike,v 1.3 1997/12/12 21:36:20 grubba Exp $
* *
* Implements the generic result module of the SQL-interface * Implements the generic result module of the SQL-interface
* *
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
//. //.
//. File: sql_result.pike //. File: sql_result.pike
//. RCSID: $Id: sql_result.pike,v 1.2 1997/03/30 19:07:41 grubba Exp $ //. RCSID: $Id: sql_result.pike,v 1.3 1997/12/12 21:36:20 grubba Exp $
//. Author: Henrik Grubbström (grubba@infovav.se) //. Author: Henrik Grubbström (grubba@infovav.se)
//. //.
//. Synopsis: Implements the generic result of the SQL-interface. //. Synopsis: Implements the generic result of the SQL-interface.
...@@ -120,6 +120,7 @@ int|array(string|int) fetch_row() ...@@ -120,6 +120,7 @@ int|array(string|int) fetch_row()
return(0); return(0);
} }
sort(indices(master_res[index]), res = values(master_res[index])); sort(indices(master_res[index]), res = values(master_res[index]));
index++;
return(res); return(res);
} }
return (master_res->fetch_row()); return (master_res->fetch_row());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment