Fix last warning found by Clang Analyzer
nghttp2_session.c:636:3: warning: Branch condition evaluates to a garbage value
This commit is contained in:
parent
2eab5d03fd
commit
d1285255eb
|
@ -571,7 +571,7 @@ int nghttp2_session_reprioritize_stream
|
|||
const nghttp2_priority_spec *pri_spec_in)
|
||||
{
|
||||
int rv;
|
||||
nghttp2_stream *dep_stream;
|
||||
nghttp2_stream *dep_stream = NULL;
|
||||
nghttp2_stream *root_stream;
|
||||
nghttp2_priority_spec pri_spec_default;
|
||||
const nghttp2_priority_spec *pri_spec = pri_spec_in;
|
||||
|
|
Loading…
Reference in New Issue