diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-07-03 18:26:32 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-07-03 18:26:32 +0000 |
commit | 476508361329e0c9a431fdbc86344c3a6caf0571 (patch) | |
tree | 4cf3ea03c84abac2a37ee8bfc4ec6cf47226b5bd /ace/TLI.cpp | |
parent | cb1f0768e2db53d76f173c687003d098cf6bb456 (diff) | |
download | ATCD-476508361329e0c9a431fdbc86344c3a6caf0571.tar.gz |
ChangeLogTag:Sat Jul 3 12:05:46 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/TLI.cpp')
-rw-r--r-- | ace/TLI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/TLI.cpp b/ace/TLI.cpp index f6d0ec697cc..39b17f2a58d 100644 --- a/ace/TLI.cpp +++ b/ace/TLI.cpp @@ -27,7 +27,8 @@ ACE_TLI::ACE_TLI (void) // (jph@ccrl.nj.nec.com) for the help. this->so_opt_req.opt.maxlen = sizeof (opthdr) + sizeof (long); - ACE_NEW (this->so_opt_req.opt.buf, char[this->so_opt_req.opt.maxlen]); + ACE_NEW (this->so_opt_req.opt.buf, + char[this->so_opt_req.opt.maxlen]); this->so_opt_ret.opt.maxlen = sizeof (opthdr) + sizeof (long); this->so_opt_ret.opt.buf = new char[this->so_opt_ret.opt.maxlen]; |