Skip to content
Snippets Groups Projects
Commit b0feed94 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix use of uninitialized value

parent 1164b6a1
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4396 failed
...@@ -428,7 +428,7 @@ set_icon(const void *data, size_t width, XWMHints *hints) ...@@ -428,7 +428,7 @@ set_icon(const void *data, size_t width, XWMHints *hints)
unsigned short tmp; unsigned short tmp;
XColor fg; XColor fg;
bool sethints = (hints == NULL); bool sethints = (hints == NULL);
unsigned long lasti, lastim; unsigned long lasti = ULONG_MAX, lastim = ULONG_MAX;
// This is literally the wost possible way to create a pixmap. :) // This is literally the wost possible way to create a pixmap. :)
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment