From cc687df8eae992e068f8917bd1ff54ad5188bacc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 3 Oct 2025 11:06:57 +1000 Subject: [PATCH] Fix: error passing undersized buffer to filelist_file_get_full_path --- source/blender/editors/space_file/file_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_file/file_ops.cc b/source/blender/editors/space_file/file_ops.cc index d5b50b7257d..2a80a46f8c2 100644 --- a/source/blender/editors/space_file/file_ops.cc +++ b/source/blender/editors/space_file/file_ops.cc @@ -1857,7 +1857,7 @@ static wmOperatorStatus file_external_operation_exec(bContext *C, wmOperator *op return OPERATOR_CANCELLED; } - char filepath[FILE_MAX]; + char filepath[FILE_MAX_LIBEXTRA]; filelist_file_get_full_path(sfile->files, fileentry, filepath); WM_cursor_set(CTX_wm_window(C), WM_CURSOR_WAIT);