From: "Todd C. Miller" Subject: Re: Minor memory leak in dial_git() To: Stefan Sperling Cc: Christian Weisgerber , gameoftrees@openbsd.org Date: Sun, 30 May 2021 07:45:00 -0600 On Sun, 30 May 2021 09:20:57 +0200, Stefan Sperling wrote: > dprintf's error indicator is defined as "less than 0" in the man page. > Should we check for r < 0 instead of r == -1? Yes, unfortunately the check should be r < 0. Stupid standards... - todd