Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/webui.c
Original file line number Diff line number Diff line change
Expand Up @@ -1975,7 +1975,7 @@ const char* webui_get_string_at(webui_event_t* e, size_t index) {
return NULL;

if (event_inf->event_data[index] != NULL) {
size_t len = _webui_strlen(event_inf->event_data[index]);
size_t len = _event_inf->event_size[index];
if (len > 0 && len <= WEBUI_MAX_BUF)
return (const char*)event_inf->event_data[index];
}
Expand Down
Loading