aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-11-06 18:34:01 -0500
committerJack Jamison <jackqjamison@gmail.com>2025-11-06 19:45:21 -0500
commitf2bec33ebc703d51a74ef17ab0624e615ba16fce (patch)
treeb7affd0ce18480685c49a8db4f6c279c4363baeb
parent737ff9f823011a27c1672eccaa99c68f8156377b (diff)
fix memory leak
-rw-r--r--README.md3
-rw-r--r--main.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index f82451f..5725de9 100644
--- a/README.md
+++ b/README.md
@@ -46,9 +46,10 @@ cursor_color = (0.9, 0.9, 0.9, 0.5)
- [x] fuzzy filter
- [x] config file
- [ ] border, top padding and set exact height
-- [ ] unicode + text shaping
+- [ ] unicode + text shaping + display unrenderable characters as something
Stretch:
- [ ] clean up the code (src folder, rename some files)
- [ ] input fluff (icons, descriptions, output names)
- [ ] arguments to override config such as fancy scroll?
+- [ ] response history
diff --git a/main.c b/main.c
index d6d71f4..b9d6ff0 100644
--- a/main.c
+++ b/main.c
@@ -115,9 +115,6 @@ int main(int argc, char* argv[]) {
wl_display_dispatch(state.display);
}
- // leak 8 bytes of memory
- malloc(8);
-
// cleanup (of course)
if (state.items) {
array_for_all(item_t, item, state.items) {