mirror of https://github.com/mpv-player/mpv
Fixed the http response parser when the http header only has the HTTP
answer and no field. Fixed some compiler warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4817 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
64ae87b5e4
commit
646c35a06e
|
@ -9,6 +9,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "http.h"
|
||||
#include "url.h"
|
||||
|
||||
HTTP_header_t *
|
||||
http_new_header() {
|
||||
|
@ -146,6 +147,7 @@ http_response_parse( HTTP_header_t *http_hdr ) {
|
|||
ptr = hdr_ptr;
|
||||
while( *ptr!='\r' && *ptr!='\n' ) ptr++;
|
||||
len = ptr-hdr_ptr;
|
||||
if( len==0 ) break;
|
||||
field = (char*)realloc(field, len+1);
|
||||
if( field==NULL ) {
|
||||
printf("Memory allocation failed\n");
|
||||
|
@ -256,7 +258,6 @@ http_get_field( HTTP_header_t *http_hdr, const char *field_name ) {
|
|||
char *
|
||||
http_get_next_field( HTTP_header_t *http_hdr ) {
|
||||
char *ptr;
|
||||
int i;
|
||||
HTTP_field_t *field;
|
||||
if( http_hdr==NULL ) return NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue