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/app-misc/slmon/files/slmon-0.5.13-invalid-free.p...

19 lines
383 B

http://bugs.gentoo.org/151293
--- rc.c
+++ rc.c
@@ -177,9 +177,10 @@
char *home, dotrc[1024] = { 0 };
home = getenv("HOME");
- strcpy(dotrc, home);
- strcat(dotrc, "/.slmonrc");
- free(home);
+ if ( home != NULL ) {
+ strcpy(dotrc, home);
+ strcat(dotrc, "/.slmonrc");
+ }
if ((f = fopen("/etc/slmonrc", "r")) != NULL) {
slmon_conf_parse(f);