@LiquidCake commented on this pull request.
> +static gchar* create_new_temp_file_name(void)
+{
+ GDir *dir;
+ GError *error = NULL;
+ gchar *utf8_filename, *temp_file_number_str;
+ gint temp_file_number, max_temp_file_number;
+ const gchar *filename;
+
+ dir = g_dir_open(persistent_temp_files_target_dir, 0, &error);
+ if (dir == NULL)
+ {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("Persistent temp files
directory not found"));
+ return NULL;
+ }
+
+ static glong temp_file_name_prefix_len =
strlen(PERSISTENT_TEMP_FILE_NAME_PREFIX);
fixed
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#discussion_r1650148859
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>