ports/misc/gnomeutils2/files/patch-logview_logview.c
Joe Marcus Clarke 47f8b8a259 Fix a double-free bug in the logview application. This would be very bad
on non-FreeBSD systems, but phkmalloc should protect us.  This fix should
take care of the abort crashes on -CURRENT.
2003-04-23 18:58:32 +00:00

37 lines
1.2 KiB
C

--- logview/logview.c.orig Sun Feb 16 15:34:59 2003
+++ logview/logview.c Wed Apr 23 14:51:26 2003
@@ -774,7 +774,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-regexp.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-regexp.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->regexp_db_path);
@@ -797,7 +797,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-descript.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-descript.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->descript_db_path);
@@ -831,7 +831,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-actions.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-actions.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->action_db_path);
@@ -882,7 +882,6 @@
else
prefs->logfile = NULL;
}
- g_free (logfile);
}
void SaveUserPrefs(UserPrefsStruct *prefs)