Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <eiseljulian@gmail.com>2019-09-04 11:21:18 +0300
committerJulian Eisel <eiseljulian@gmail.com>2019-09-04 11:23:38 +0300
commit718989d66216265afb140e9b1426b3ba36f4ebc3 (patch)
tree769be84e15c9928984fa1b21c6bd0f718518f183 /source/blender
parentfcf2a712eca278f198e8d61845f2078088af1f9a (diff)
Fix T69469: Overrun in file action type RNA enum
Think it was harmless in practice since we didn't actually enumerate the items, only count them and access the set value. Still...
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/windowmanager/intern/wm_operator_props.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index 663e4adf06b..34e17a8102a 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -85,6 +85,7 @@ void WM_operator_properties_filesel(wmOperatorType *ot,
"Open",
"Use the file browser for opening files or a directory"},
{FILE_SAVE, "SAVE", 0, "Save", "Use the file browser for saving a file"},
+ {0, NULL, 0, NULL, NULL},
};
if (flag & WM_FILESEL_FILEPATH) {