mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-18 13:00:00 +01:00
100l, compute correctly poll_table size when allocating
Originally committed as revision 15238 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -545,7 +545,7 @@ static int http_server(void)
|
|||||||
struct pollfd *poll_table, *poll_entry;
|
struct pollfd *poll_table, *poll_entry;
|
||||||
HTTPContext *c, *c_next;
|
HTTPContext *c, *c_next;
|
||||||
|
|
||||||
if(!(poll_table = av_mallocz(nb_max_http_connections + 2))) {
|
if(!(poll_table = av_mallocz((nb_max_http_connections + 2)*sizeof(*poll_table)))) {
|
||||||
http_log("Impossible to allocate a poll table handling %d connections.\n", nb_max_http_connections);
|
http_log("Impossible to allocate a poll table handling %d connections.\n", nb_max_http_connections);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user