Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
htsp server: fix len variable type in htsp_read_message() - coverity …
…(signess)
  • Loading branch information
perexg committed Oct 3, 2014
1 parent 6daddcc commit 854f4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/htsp_server.c
Expand Up @@ -2246,7 +2246,7 @@ static int
htsp_read_message(htsp_connection_t *htsp, htsmsg_t **mp, int timeout)
{
int v;
size_t len;
uint32_t len;
uint8_t data[4];
void *buf;

Expand Down

0 comments on commit 854f4df

Please sign in to comment.