From b17cef0dc794344c8d76390e1357d9b2282ddafd Mon Sep 17 00:00:00 2001
From: Marko Lindqvist <cazfi74@gmail.com>
Date: Sat, 4 Jul 2026 13:22:06 +0300
Subject: [PATCH 38/38] ls_mysql.c: Clear trailing tabs

See RM #2076

Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
 dependencies/luasql/src/ls_mysql.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dependencies/luasql/src/ls_mysql.c b/dependencies/luasql/src/ls_mysql.c
index 2055c7bbe1..7cd801fde0 100644
--- a/dependencies/luasql/src/ls_mysql.c
+++ b/dependencies/luasql/src/ls_mysql.c
@@ -223,7 +223,7 @@ static int cur_fetch (lua_State *L) {
 			if (cur->colnames == LUA_NOREF)
 		        create_colinfo(L, cur);
 			lua_rawgeti (L, LUA_REGISTRYINDEX, cur->colnames);/* Push colnames*/
-	
+
 			/* Copy values to alphanumerical indices */
 			for (i = 0; i < cur->numcols; i++) {
 				lua_rawgeti(L, -1, i+1); /* push the field name */
@@ -345,7 +345,7 @@ static void _pushtable (lua_State *L, cur_data *cur, size_t off) {
 	/* If colnames or coltypes do not exist, create both. */
 	if (*ref == LUA_NOREF)
 		create_colinfo(L, cur);
-	
+
 	/* Pushes the right table (colnames or coltypes) */
 	lua_rawgeti (L, LUA_REGISTRYINDEX, *ref);
 }
-- 
2.53.0

