mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 03:31:33 +00:00
Bugfix: Fixes #547, iexplore - iexplore.sh no longer launches Internet Explorer
This commit is contained in:
@@ -354,6 +354,15 @@ void wintc_shext_path_info_demangle_uri(
|
||||
path_info->extended_path =
|
||||
wintc_substr(p_ext_delim + 2, NULL);
|
||||
}
|
||||
|
||||
//
|
||||
// STEP 3: If we still have no path up to this point, just put the whole
|
||||
// thing in base_path and pass it through as-is
|
||||
//
|
||||
if (!path_info->base_path)
|
||||
{
|
||||
path_info->base_path = g_strdup(uri);
|
||||
}
|
||||
}
|
||||
|
||||
gchar* wintc_shext_path_info_get_as_single_path(
|
||||
|
||||
@@ -608,10 +608,11 @@ static void wintc_explorer_window_set_property(
|
||||
uri
|
||||
);
|
||||
|
||||
wnd->initial_path = path_info.base_path;
|
||||
path_info.base_path = NULL;
|
||||
wnd->initial_path =
|
||||
g_steal_pointer(&(path_info.base_path));
|
||||
|
||||
wintc_shext_path_info_free_data(&path_info);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user