mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4028
This commit is contained in:
parent
a65bb8950a
commit
468961fea5
|
@ -16067,4 +16067,10 @@ Noaa 6 August 2004
|
|||
- removed libglut.a from cvs, was accidentally in there
|
||||
|
||||
boincglut/lib/glut/
|
||||
libglut.a (removed)
|
||||
libglut.a (removed)
|
||||
|
||||
Rom 6 Aug 2004
|
||||
- Feeder should be using mysql_store_result instead of mysql_use_result.
|
||||
|
||||
db/
|
||||
boinc_db.C
|
||||
|
|
|
@ -839,7 +839,7 @@ int DB_WORK_ITEM::enumerate(int limit) {
|
|||
#endif
|
||||
retval = db->do_query(query);
|
||||
if (retval) return mysql_errno(db->mysql);
|
||||
cursor.rp = mysql_use_result(db->mysql);
|
||||
cursor.rp = mysql_store_result(db->mysql);
|
||||
if (!cursor.rp) return mysql_errno(db->mysql);
|
||||
cursor.active = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue