mirror of https://github.com/MidnightCommander/mc
Compile fix
This commit is contained in:
parent
0f57dbd94e
commit
3e9b39c9e1
|
@ -937,6 +937,8 @@ is_mountable (char *filename, file_entry *fe, int *is_mounted, char **point)
|
|||
|
||||
if (point)
|
||||
*point = p;
|
||||
else
|
||||
g_free (point);
|
||||
|
||||
*is_mounted = is_block_device_mounted (buffer);
|
||||
|
||||
|
@ -1081,6 +1083,7 @@ desktop_icon_info_open (DesktopIconInfo *dii)
|
|||
|
||||
if (launch)
|
||||
new_panel_at (point);
|
||||
g_free (point);
|
||||
} else {
|
||||
if (is_exe (fe->buf.st_mode) && if_link_is_exe (desktop_directory, fe))
|
||||
my_system (EXECUTE_AS_SHELL, shell, filename);
|
||||
|
|
|
@ -127,6 +127,9 @@ gnome_file_property_dialog_finalize (GtkObject *object)
|
|||
g_free (gfpd->desktop_url);
|
||||
if (gfpd->caption)
|
||||
g_free (gfpd->caption);
|
||||
|
||||
if (gfpd->mode_name)
|
||||
g_free (gfpd->mode_name);
|
||||
|
||||
(* GTK_OBJECT_CLASS (parent_class)->finalize) (object);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue