You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-action/0verkill/files/0verkill-0.16-home-overflow...

27 lines
724 B

--- a/client.c 2001-12-16 04:26:38.000000000 -0500
+++ b/client.c 2003-11-17 15:12:52.850772508 -0500
@@ -191,9 +191,9 @@
unsigned char txt[256];
#ifndef WIN32
- sprintf(txt,"%s/%s",getenv("HOME"),CFG_FILE);
+ snprintf(txt,sizeof(txt),"%s/%s",getenv("HOME"),CFG_FILE);
#else
- sprintf(txt,"./%s",CFG_FILE);
+ snprintf(txt,sizeof(txt),"./%s",CFG_FILE);
#endif
stream=fopen(txt,"r");
if (!stream)return;
@@ -223,9 +223,9 @@
unsigned char txt[256];
#ifndef WIN32
- sprintf(txt,"%s/%s",getenv("HOME"),CFG_FILE);
+ snprintf(txt,sizeof(txt),"%s/%s",getenv("HOME"),CFG_FILE);
#else
- sprintf(txt,"./%s",CFG_FILE);
+ snprintf(txt,sizeof(txt),"./%s",CFG_FILE);
#endif
stream=fopen(txt,"w");
if (!stream)return;