From 718989d66216265afb140e9b1426b3ba36f4ebc3 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 4 Sep 2019 10:21:18 +0200 Subject: 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... --- source/blender/windowmanager/intern/wm_operator_props.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/windowmanager') 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) { -- cgit v1.2.3