diff options
author | rbuj <[email protected]> | 2019-02-27 19:01:04 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-04-09 18:48:55 +0000 |
commit | 532a8d3e9794c9bc0f639b40f98eed0049b70757 (patch) | |
tree | 4a313ea8502e0bc631f609f17bd412d197075367 /baobab/src/baobab-utils.c | |
parent | d4d96862c962266bc33a21f1fa64e97c42df4e62 (diff) | |
download | mate-utils-532a8d3e9794c9bc0f639b40f98eed0049b70757.tar.bz2 mate-utils-532a8d3e9794c9bc0f639b40f98eed0049b70757.tar.xz |
Improve performance by removing unused assignments
Diffstat (limited to 'baobab/src/baobab-utils.c')
-rw-r--r-- | baobab/src/baobab-utils.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/baobab/src/baobab-utils.c b/baobab/src/baobab-utils.c index fb68924b..b7539a93 100644 --- a/baobab/src/baobab-utils.c +++ b/baobab/src/baobab-utils.c @@ -381,9 +381,7 @@ open_file_with_application (GFile *file) GAppInfo *application; gchar *primary; GFileInfo *info; - gchar *uri_scheme; const char *content; - gboolean local = FALSE; info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE, @@ -392,9 +390,6 @@ open_file_with_application (GFile *file) NULL); if (!info) return; - uri_scheme = g_file_get_uri_scheme (file); - if (g_ascii_strcasecmp(uri_scheme,"file") == 0) local = TRUE; - content = g_file_info_get_content_type (info); application = g_app_info_get_default_for_type (content, TRUE); @@ -420,8 +415,6 @@ open_file_with_application (GFile *file) g_free (uri); } - g_free (uri_scheme); - if (application) g_object_unref (application); |