Commit d1285255 authored by Alexis La Goutte's avatar Alexis La Goutte

Fix last warning found by Clang Analyzer

nghttp2_session.c:636:3: warning: Branch condition evaluates to a garbage value
parent 2eab5d03
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment