mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Futher fixes for aCC.
extra/yassl/src/handshake.cpp: Further fixes for aCC: rewrite c-tor invocation to not require any optimization from the compiler.
This commit is contained in:
parent
29f18223aa
commit
09171d1b53
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue