From 37bcb6a6d2bb5684f7eb93682930e3a7a8faab0e Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Wed, 13 Aug 2025 18:14:42 -0400 Subject: [PATCH] Version v0.2.54 - Final fix for remaining compile warning by increasing user_mount_path buffer to 2048 bytes --- otp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otp.c b/otp.c index 45fdd9f..1730812 100644 --- a/otp.c +++ b/otp.c @@ -2388,7 +2388,7 @@ int scan_usb_drives_for_pads(struct USBPadInfo** usb_pads, int* usb_count) { while ((user_entry = readdir(user_dir)) != NULL && count < 100) { if (user_entry->d_name[0] == '.') continue; - char user_mount_path[1024]; + char user_mount_path[2048]; snprintf(user_mount_path, sizeof(user_mount_path), "%s/%s", mount_path, user_entry->d_name); // Scan this mount point for pads