base: merge gc remove

This commit is contained in:
luboslenco
2026-08-21 22:35:30 +02:00
parent 2d394ca334
commit 4c77755da0
37 changed files with 635 additions and 965 deletions
+1 -2
View File
@@ -749,10 +749,9 @@ static int xk_to_iron(KeySym symbol) {
return KEY_CODE_UNKNOWN;
}
void *gc_alloc(size_t size);
static char *uri_decode(const char *src) {
char *res = gc_alloc(1024);
char *res = calloc(1, 1024);
char *dst = res;
char a, b;
while (*src) {