This is an automated email from the ASF dual-hosted git repository.

sorber pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  cf7da62   TS-5006: Fix CID 1364096
cf7da62 is described below

commit cf7da622bde3a532066b6754283a34e4dc478467
Author: Phil Sorber <[email protected]>
AuthorDate: Wed Oct 26 11:31:19 2016 -0600

    TS-5006: Fix CID 1364096
    
    Initialize non-static class member.
---
 iocore/net/UnixNetAccept.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/iocore/net/UnixNetAccept.cc b/iocore/net/UnixNetAccept.cc
index 444c827..b1d5b48 100644
--- a/iocore/net/UnixNetAccept.cc
+++ b/iocore/net/UnixNetAccept.cc
@@ -481,7 +481,8 @@ NetAccept::acceptLoopEvent(int event, Event *e)
 //
 //
 
-NetAccept::NetAccept(const NetProcessor::AcceptOptions &_opt) : 
Continuation(NULL), period(0), ifd(NO_FD), opt(_opt)
+NetAccept::NetAccept(const NetProcessor::AcceptOptions &_opt)
+  : Continuation(NULL), period(0), accept_fn(NULL), ifd(NO_FD), opt(_opt)
 {
 }
 

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to