List:Internals« Previous MessageNext Message »
From:jonas Date:October 3 2005 9:49am
Subject:bk commit into 5.0 tree (jonas:1.2006)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of jonas. When jonas 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
  1.2006 05/10/03 11:49:06 jonas@stripped +1 -0
  ndb - mysql-test-run ndb_config
    Fix 32/64 bit insecure code 

  ndb/src/mgmsrv/InitConfigFileParser.cpp
    1.23 05/10/03 11:49:00 jonas@stripped +0 -4
    Fix 32/64 bit insecure/useless code

# 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/mysql-5.0-push

--- 1.22/ndb/src/mgmsrv/InitConfigFileParser.cpp	2005-09-30 12:19:13 +02:00
+++ 1.23/ndb/src/mgmsrv/InitConfigFileParser.cpp	2005-10-03 11:49:00 +02:00
@@ -773,14 +773,10 @@
       case ConfigInfo::CI_INT: 
 	opt.value = (gptr*)malloc(sizeof(int));
 	opt.var_type = GET_INT;
-	require(convertStringToUint64(param._min, (Uint64&)opt.min_value));
-	require(convertStringToUint64(param._max, (Uint64&)opt.max_value));
 	break;
       case ConfigInfo::CI_INT64:
 	opt.value = (gptr*)malloc(sizeof(Int64));
 	opt.var_type = GET_LL;
-	require(convertStringToUint64(param._min, (Uint64&)opt.min_value));
-	require(convertStringToUint64(param._max, (Uint64&)opt.max_value));
 	break;
       case ConfigInfo::CI_STRING: 
 	opt.value = (gptr*)malloc(sizeof(char *));
Thread
bk commit into 5.0 tree (jonas:1.2006)jonas3 Oct