List:Internals« Previous MessageNext Message »
From:konstantin Date:June 6 2005 12:52pm
Subject:bk commit into 5.0 tree (konstantin:1.1923)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kostja. When kostja 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.1923 05/06/06 14:52:43 konstantin@stripped +1 -0
  Futher fixes for aCC.

  extra/yassl/src/handshake.cpp
    1.4 05/06/06 14:52:36 konstantin@stripped +1 -1
    Further fixes for aCC: rewrite c-tor invocation to not require any
    optimization from the compiler.

# 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:	konstantin
# Host:	dragonfly.local
# Root:	/opt/local/work/mysql-5.0-root

--- 1.3/extra/yassl/src/handshake.cpp	2005-05-31 19:56:25 +04:00
+++ 1.4/extra/yassl/src/handshake.cpp	2005-06-06 14:52:36 +04:00
@@ -718,7 +718,7 @@
     mySTL::auto_ptr<input_buffer> buffered(ysDelete);
 
     for (;;) {
-        mySTL::auto_ptr<input_buffer> tmp = DoProcessReply(ssl, buffered);
+        mySTL::auto_ptr<input_buffer> tmp(DoProcessReply(ssl, buffered));
         if (tmp.get())      // had only part of a record's data, call again
             buffered = tmp;
         else
Thread
bk commit into 5.0 tree (konstantin:1.1923)konstantin6 Jun