Mercurial > mplayer.hg
comparison libmpdemux/realrtsp/real.c @ 19074:d385666efa27
removes unused parentheses lefted behind in the r19075 sizeof(char) cleanups, noticed by dalias
author | reynaldo |
---|---|
date | Fri, 14 Jul 2006 06:26:31 +0000 |
parents | 16990c298b7b |
children | ed6ca050bba5 |
comparison
equal
deleted
inserted
replaced
19073:8b52dad54b1d | 19074:d385666efa27 |
---|---|
765 | 765 |
766 #ifdef LOG | 766 #ifdef LOG |
767 printf("real: Stream description size: %u\n", size); | 767 printf("real: Stream description size: %u\n", size); |
768 #endif | 768 #endif |
769 | 769 |
770 description=malloc((size+1)); | 770 description=malloc(size+1); |
771 | 771 |
772 if( rtsp_read_data(rtsp_session, description, size) <= 0) { | 772 if( rtsp_read_data(rtsp_session, description, size) <= 0) { |
773 buf = xbuffer_free(buf); | 773 buf = xbuffer_free(buf); |
774 return NULL; | 774 return NULL; |
775 } | 775 } |