Below is the list of changes that have just been committed into a local
5.0 repository of tsmith. When tsmith does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-03-06 14:47:26-07:00, tsmith@stripped +1 -0
Fix for bug #25595 "missing DBUG_RETURN in function "mysql_stat""
libmysql/libmysql.c@stripped, 2007-03-06 14:47:21-07:00, tsmith@stripped +1 -1
Fix for bug #25595 "missing DBUG_RETURN in function "mysql_stat""
Use DBUG_RETURN instead of return
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: tsmith
# Host: siva.hindu.god
# Root: /home/tsmith/m/bk/maint/mar05/50
--- 1.252/libmysql/libmysql.c 2007-01-17 05:57:43 -07:00
+++ 1.253/libmysql/libmysql.c 2007-03-06 14:47:21 -07:00
@@ -1367,7 +1367,7 @@
{
DBUG_ENTER("mysql_stat");
if (simple_command(mysql,COM_STATISTICS,0,0,0))
- return mysql->net.last_error;
+ DBUG_RETURN(mysql->net.last_error);
DBUG_RETURN((*mysql->methods->read_statistics)(mysql));
}
| Thread |
|---|
| • bk commit into 5.0 tree (tsmith:1.2457) BUG#25595 | tim | 6 Mar |