summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorkonstantin@mysql.com <>2005-06-06 14:52:43 +0400
committerkonstantin@mysql.com <>2005-06-06 14:52:43 +0400
commitb6e895ad9f5c595652426b2483a93650a0a15a58 (patch)
tree872e975ecd63ed19ac243950137491b462124c08 /extra
parentdcae1d174f6d4fe4cabd116a215ce1036aa97bd0 (diff)
downloadmariadb-git-b6e895ad9f5c595652426b2483a93650a0a15a58.tar.gz
Futher fixes for aCC.
Diffstat (limited to 'extra')
-rw-r--r--extra/yassl/src/handshake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/src/handshake.cpp b/extra/yassl/src/handshake.cpp
index e49d1ec76cc..45dfb6fa032 100644
--- a/extra/yassl/src/handshake.cpp
+++ b/extra/yassl/src/handshake.cpp
@@ -718,7 +718,7 @@ void processReply(SSL& ssl)
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