1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +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 b8a5c57acb
commit ad4f12281b

View File

@ -66,9 +66,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;