You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The strdup (~ line 148) in xdu.c:makenode (see below) is unneeded, since the original data isn't freed during runtime,
what can easily be checked with valgrind.
valgrind --leak-check=full ./xdu test.xdu
or with more noise
valgrind --leak-check=full --show-leak-kinds=all ./xdu test.xdu
The strdup (~ line 148) in xdu.c:makenode (see below) is unneeded, since the original data isn't freed during runtime,
what can easily be checked with valgrind.
(Just for easier reference)
The text was updated successfully, but these errors were encountered: