Skip to content

Commit

Permalink
erts: Fix valgrind target compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
sverker committed Mar 3, 2025
1 parent 647d2f0 commit 2bc3d81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion erts/emulator/beam/erl_proc_sig_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -6040,7 +6040,9 @@ handle_altact_msg(Process *c_p, ErtsSigRecvTracing *tracing,

case ERTS_SIG_Q_TYPE_DIST:
{
ERTS_UNDEF(ErtsMessage *mp, NULL); /* shut up faulty warning... */
ErtsMessage *mp;
ERTS_UNDEF(mp, NULL);

/*
* Convert to external message...
*
Expand Down

0 comments on commit 2bc3d81

Please sign in to comment.