mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
ffserver: fix potential buffer overflow, based on wrong fscanf format indentifier.
Fixed Ticket1780 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d4e82a341e
commit
f077e1fb4c
@ -2029,7 +2029,7 @@ static void compute_status(HTTPContext *c)
|
|||||||
char cpuperc[10];
|
char cpuperc[10];
|
||||||
char cpuused[64];
|
char cpuused[64];
|
||||||
|
|
||||||
if (fscanf(pid_stat, "%10s %64s", cpuperc,
|
if (fscanf(pid_stat, "%9s %63s", cpuperc,
|
||||||
cpuused) == 2) {
|
cpuused) == 2) {
|
||||||
avio_printf(pb, "Currently using %s%% of the cpu. Total time used %s.\n",
|
avio_printf(pb, "Currently using %s%% of the cpu. Total time used %s.\n",
|
||||||
cpuperc, cpuused);
|
cpuperc, cpuused);
|
||||||
|
Loading…
Reference in New Issue
Block a user