mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
WEBUI_MAX_ARG
fix
This commit is contained in:
parent
026617cb18
commit
8f80ffe476
18
src/webui.c
18
src/webui.c
@ -1132,7 +1132,7 @@ const char* webui_get_string_at(webui_event_t* e, size_t index) {
|
||||
// Initialization
|
||||
_webui_init();
|
||||
|
||||
if (index >= WEBUI_MAX_ARG)
|
||||
if (index > WEBUI_MAX_ARG)
|
||||
return NULL;
|
||||
|
||||
// Dereference
|
||||
@ -1163,7 +1163,7 @@ long long int webui_get_int_at(webui_event_t* e, size_t index) {
|
||||
// Initialization & Dereference
|
||||
// are done by webui_get_string()
|
||||
|
||||
if (index >= WEBUI_MAX_ARG)
|
||||
if (index > WEBUI_MAX_ARG)
|
||||
return 0;
|
||||
|
||||
const char* str = webui_get_string_at(e, index);
|
||||
@ -1189,7 +1189,7 @@ bool webui_get_bool_at(webui_event_t* e, size_t index) {
|
||||
// Initialization & Dereference
|
||||
// are done by webui_get_string()
|
||||
|
||||
if (index >= WEBUI_MAX_ARG)
|
||||
if (index > WEBUI_MAX_ARG)
|
||||
return false;
|
||||
|
||||
const char* str = webui_get_string_at(e, index);
|
||||
@ -1211,7 +1211,7 @@ size_t webui_get_size_at(webui_event_t* e, size_t index) {
|
||||
// Initialization
|
||||
_webui_init();
|
||||
|
||||
if (index >= WEBUI_MAX_ARG)
|
||||
if (index > WEBUI_MAX_ARG)
|
||||
return 0;
|
||||
|
||||
// Dereference
|
||||
@ -6367,7 +6367,7 @@ static WEBUI_THREAD_RECEIVE {
|
||||
// New event inf
|
||||
webui_event_inf_t* event_inf =
|
||||
(webui_event_inf_t*)_webui_malloc(sizeof(webui_event_inf_t));
|
||||
if (win->events_count >= WEBUI_MAX_ARG)
|
||||
if (win->events_count > WEBUI_MAX_ARG)
|
||||
win->events_count = 0;
|
||||
size_t event_num = win->events_count++;
|
||||
win->events[event_num] = event_inf;
|
||||
@ -6506,7 +6506,7 @@ static WEBUI_THREAD_RECEIVE {
|
||||
webui_event_inf_t* event_inf =
|
||||
(webui_event_inf_t*)_webui_malloc(sizeof(webui_event_inf_t)
|
||||
);
|
||||
if (win->events_count >= WEBUI_MAX_ARG)
|
||||
if (win->events_count > WEBUI_MAX_ARG)
|
||||
win->events_count = 0;
|
||||
size_t event_num = win->events_count++;
|
||||
win->events[event_num] = event_inf;
|
||||
@ -6562,7 +6562,7 @@ static WEBUI_THREAD_RECEIVE {
|
||||
// New event inf
|
||||
webui_event_inf_t* event_inf =
|
||||
(webui_event_inf_t*)_webui_malloc(sizeof(webui_event_inf_t));
|
||||
if (win->events_count >= WEBUI_MAX_ARG)
|
||||
if (win->events_count > WEBUI_MAX_ARG)
|
||||
win->events_count = 0;
|
||||
size_t event_num = win->events_count++;
|
||||
win->events[event_num] = event_inf;
|
||||
@ -6749,7 +6749,7 @@ static WEBUI_THREAD_RECEIVE {
|
||||
// New event inf
|
||||
webui_event_inf_t* event_inf =
|
||||
(webui_event_inf_t*)_webui_malloc(sizeof(webui_event_inf_t));
|
||||
if (win->events_count >= WEBUI_MAX_ARG)
|
||||
if (win->events_count > WEBUI_MAX_ARG)
|
||||
win->events_count = 0;
|
||||
size_t event_num = win->events_count++;
|
||||
win->events[event_num] = event_inf;
|
||||
@ -6790,7 +6790,7 @@ static WEBUI_THREAD_RECEIVE {
|
||||
// New event inf
|
||||
webui_event_inf_t* event_inf =
|
||||
(webui_event_inf_t*)_webui_malloc(sizeof(webui_event_inf_t));
|
||||
if (win->events_count >= WEBUI_MAX_ARG)
|
||||
if (win->events_count > WEBUI_MAX_ARG)
|
||||
win->events_count = 0;
|
||||
size_t event_num = win->events_count++;
|
||||
win->events[event_num] = event_inf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user