Преглед изворни кода

🐛 Fix ACTION_ITEM with nullptr (#23195)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Jason Smith пре 2 година
родитељ
комит
65e52c1150
No account linked to committer's email address
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      Marlin/src/lcd/menu/menu_item.h

+ 1
- 1
Marlin/src/lcd/menu/menu_item.h Прегледај датотеку

@@ -55,7 +55,7 @@ class MenuItem_button : public MenuItemBase {
55 55
 class MenuItem_function : public MenuItem_button {
56 56
   public:
57 57
     //static inline void action(PGM_P const, const uint8_t, const menuAction_t func) { (*func)(); };
58
-    static inline void action(PGM_P const, const menuAction_t func) { (*func)(); };
58
+    static inline void action(PGM_P const, const menuAction_t func) { if (func) (*func)(); };
59 59
 };
60 60
 
61 61
 // GCODES_ITEM(LABEL, GCODES)

Loading…
Откажи
Сачувај