List:Commits« Previous MessageNext Message »
From:Georgi Kodinov Date:November 29 2007 1:30pm
Subject:Re: bk commit into 5.0 tree (tnurnberg:1.2551) BUG#31752
View as plain text  
Hi,

This is Episode II of the review :-)

On 26.11.2007, at 10:13, Tatjana A Nuernberg wrote:

> Below is the list of changes that have just been committed into a  
> local
> 5.0 repository of tnurnberg. When tnurnberg 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-11-26 09:13:23+01:00, tnurnberg@stripped +2 -0
>  Bug#31752: check strmake() bounds
>
>  strmake() called with wrong parameters:
>  5.0-specific fixes.
>
>  client/mysql.cc@stripped, 2007-11-26 09:13:22+01:00,  
> tnurnberg@stripped +4 -1
>    In debug-mode, strmake() fills unused part of buffer with
>    a test-pattern. This overwrites our previous extra '\0'
>    (from previous bzero()).
>
>  sql/sp.cc@stripped, 2007-11-26 09:13:22+01:00, tnurnberg@stripped +1 -1
>    off-by-one buffer-size.
>
> diff -Nrup a/client/mysql.cc b/client/mysql.cc
> --- a/client/mysql.cc	2007-08-30 10:53:20 +02:00
> +++ b/client/mysql.cc	2007-11-26 09:13:22 +01:00
> @@ -2987,7 +2987,10 @@ com_connect(String *buffer, char *line)
>       Two null bytes are needed in the end of buff to allow
>       get_arg to find end of string the second time it's called.
>     */
> -    strmake(buff, line, sizeof(buff)-2);
> +    tmp= strmake(buff, line, sizeof(buff)-2);
> +#ifdef EXTRA_DEBUG
> +    tmp[1]= 0;
> +#endif

Please add a comment here : it's not obvious why this is done.  
Eventually you may #ifndef EXTRA_DEBUG the bzero() call : it's  
redundant.

Best Regards,
Joro
-- 
Georgi Kodinov, Senior Software Engineer
MySQL AB, Plovdiv, Bulgaria, www.mysql.com
Office: +359 32 634 397 Mobile: +359 887 700 566 Skype: georgekodinov

Are you MySQL certified?  www.mysql.com/certification

Thread
bk commit into 5.0 tree (tnurnberg:1.2551) BUG#31752Tatjana A Nuernberg26 Nov
  • Re: bk commit into 5.0 tree (tnurnberg:1.2551) BUG#31752Georgi Kodinov29 Nov