From ff273ddae7c2f683715ff7e44ac9b8d1e1b93d8e Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 2 Apr 2010 22:08:57 +0000 Subject: Fix buffer size; should hold 2 32-bit integers in hex = 16 chars + terminating zero, so should be 17 bytes, not 9. Originally committed as revision 22786 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/httpauth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/httpauth.c') diff --git a/libavformat/httpauth.c b/libavformat/httpauth.c index d82f3a98f1..cef27569a8 100644 --- a/libavformat/httpauth.c +++ b/libavformat/httpauth.c @@ -187,7 +187,7 @@ static char *make_digest_auth(HTTPAuthState *state, const char *username, DigestParams *digest = &state->digest_params; int len; uint32_t cnonce_buf[2]; - char cnonce[9]; + char cnonce[17]; char nc[9]; int i; char A1hash[33], A2hash[33], response[33]; -- cgit v1.2.3