@LiquidCake commented on this pull request.


In plugins/saveactions.c:

> +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, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/pull/3911/review/2134374338@github.com>