Files
ardupilot/libraries/AP_Scripting/lua
Christian Clauss 7351a858b5 AP_Scripting: Fix ‘buff’ may be used uninitialized
Fixes: #30623
* #30623

Initialized the `buff` to remove a frequent warning in our GitHub Actions.
```diff
-  char buff[LUA_TMPNAMBUFSIZE];
+  char buff[LUA_TMPNAMBUFSIZE] = {0};
```
2025-07-13 17:14:25 +10:00
..

This is Lua 5.3.6, released on 14 Sep 2020.

For installation instructions, license details, and
further information about Lua, see doc/readme.html.