applehttp: Avoid reading uninitialized memory

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2011-12-14 20:33:39 +02:00
parent 61ad9a4bb3
commit c41b9842ce
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ static int parse_playlist(AppleHTTPContext *c, const char *url,
enum KeyType key_type = KEY_NONE;
uint8_t iv[16] = "";
int has_iv = 0;
char key[MAX_URL_SIZE];
char key[MAX_URL_SIZE] = "";
char line[1024];
const char *ptr;
int close_in = 0;