Mercurial > mplayer.hg
changeset 32516:d12d304b4dbd
Replace hardcoded str size with sizeof
author | cboesch |
---|---|
date | Sun, 07 Nov 2010 21:48:12 +0000 |
parents | 84bdbf9e9c48 |
children | a3ca3a1ae291 |
files | stream/network.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/network.c Sun Nov 07 21:42:26 2010 +0000 +++ b/stream/network.c Sun Nov 07 21:48:12 2010 +0000 @@ -215,14 +215,14 @@ http_set_uri( http_hdr, server_url->file ); } if (server_url->port && server_url->port != 80) - snprintf(str, 256, "Host: %s:%d", server_url->hostname, server_url->port ); + snprintf(str, sizeof(str), "Host: %s:%d", server_url->hostname, server_url->port ); else - snprintf(str, 256, "Host: %s", server_url->hostname ); + snprintf(str, sizeof(str), "Host: %s", server_url->hostname ); http_set_field( http_hdr, str); if (network_useragent) - snprintf(str, 256, "User-Agent: %s", network_useragent); + snprintf(str, sizeof(str), "User-Agent: %s", network_useragent); else - snprintf(str, 256, "User-Agent: %s", mplayer_version); + snprintf(str, sizeof(str), "User-Agent: %s", mplayer_version); http_set_field(http_hdr, str); if (network_referrer) { @@ -247,7 +247,7 @@ if(pos>0) { // Extend http_send_request with possibility to do partial content retrieval - snprintf(str, 256, "Range: bytes=%"PRId64"-", (int64_t)pos); + snprintf(str, sizeof(str), "Range: bytes=%"PRId64"-", (int64_t)pos); http_set_field(http_hdr, str); }