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:
Alexis La Goutte 2014-11-26 18:18:00 +01:00
parent 2eab5d03fd
commit d1285255eb
1 changed files with 1 additions and 1 deletions

View File

@ -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;