Remove a redundant null pointer check

Originally committed as revision 22679 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Martin Storsjö 15 years ago
parent 30af077942
commit 60f198a774
  1. 3
      libavformat/httpauth.c

@ -143,9 +143,6 @@ static void choose_qop(char *qop, int size)
void ff_http_auth_handle_header(HTTPAuthState *state, const char *key,
const char *value)
{
if (!state)
return;
if (!strcmp(key, "WWW-Authenticate")) {
const char *p;
if (av_stristart(value, "Basic ", &p) &&

Loading…
Cancel
Save