Repository: trafficserver Updated Branches: refs/heads/master e535b4d72 -> 4599551a2
[TS-3029]: Fix spdy related seg fault in production, due to resetting req->fetch_sm to null Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/4599551a Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/4599551a Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/4599551a Branch: refs/heads/master Commit: 4599551a2582686f09010bc8eae864c50c53eb30 Parents: e535b4d Author: sunwei <[email protected]> Authored: Wed Apr 29 16:59:51 2015 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Wed Apr 29 16:59:51 2015 +0000 ---------------------------------------------------------------------- proxy/spdy/SpdyClientSession.cc | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/4599551a/proxy/spdy/SpdyClientSession.cc ---------------------------------------------------------------------- diff --git a/proxy/spdy/SpdyClientSession.cc b/proxy/spdy/SpdyClientSession.cc index b55b5c3..8e831b4 100644 --- a/proxy/spdy/SpdyClientSession.cc +++ b/proxy/spdy/SpdyClientSession.cc @@ -335,7 +335,6 @@ spdy_process_fetch(TSEvent event, SpdyClientSession *sm, void *edata) Debug("spdy_error", "spdy_process_fetch fetch error, fetch_sm %p, ret %d for sm_id %" PRId64 ", stream_id %u, req time %" PRId64 ", url %s", req->fetch_sm, ret, sm->sm_id, req->stream_id, req->start_time, req->url.c_str()); - req->fetch_sm = NULL; } break; }
