1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +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 {
char apikey[64];
char charid[20];
char userid[20];
char apikey[65];
char charid[21];
char userid[21];
};
int num_chars = 0;