1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

Fix buffer overflows in eve.c (sf.net #3034056)

This commit is contained in:
Pavel Labath 2010-08-12 17:21:45 +02:00
parent 074271b430
commit 699d6bed40

View File

@ -68,9 +68,9 @@ struct xmlData {
}; };
struct eve_data { struct eve_data {
char apikey[64]; char apikey[65];
char charid[20]; char charid[21];
char userid[20]; char userid[21];
}; };
int num_chars = 0; int num_chars = 0;