fix entry widget's use of clipboard
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoI_xD 2026-03-26 21:58:47 -07:00
commit efbf90945a
2 changed files with 10 additions and 3 deletions

View file

@ -2385,8 +2385,11 @@ static void MwLLSetClipboardImpl(MwLL handle, const char* text) {
}
static void MwLLGetClipboardImpl(MwLL handle) {
(void)handle;
/* no-op */
int i;
for(i = 0; i < arrlen(handle->wayland.clipboard_devices); i++) {
wl_clipboard_read(
handle->wayland.clipboard_devices[i]);
}
return;
}

View file

@ -148,7 +148,11 @@ static void prop_change(MwWidget handle, const char* prop) {
static void clipboard(MwWidget handle, const char* data) {
MwEntry t = handle->internal;
const char* str = MwGetText(handle, MwNtext);
char* out = malloc(strlen(str) + strlen(data) + 1);
char* out;
if(!str) {
str = "";
}
out = malloc(strlen(str) + strlen(data) + 1);
if(str == NULL) str = "";