Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppress alpine allocation issue #1284

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 10 additions & 0 deletions .valgrind.suppressions
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@
obj:*
}

# Ignore yet another musls' weird error
{
musl_alpine_libc
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
fun:getdelim
...
}

# rsvg_error_handle_close got fixed in
# - GNOME/librsvg@7bf1014
# (2018-11-12, first tags: v2.45.0, v2.44.9)
Expand Down
6 changes: 3 additions & 3 deletions src/wayland/wl.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ static void output_handle_name(void *data, struct wl_output *wl_output,
output->name = g_strdup(name);
LOG_D("Output global %" PRIu32 " name %s", output->global_name, name);
}
#endif

static void output_listener_done_handler(void *data, struct wl_output *output) {
static void output_handle_description(void *data, struct wl_output *output, const char* description) {
// do nothing
}
#endif

static void output_handle_description(void *data, struct wl_output *output, const char* description) {
static void output_listener_done_handler(void *data, struct wl_output *output) {
// do nothing
}

Expand Down
Loading