From e83643f4f63cf8748cc27881b58b5a54cb1e3d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulrich=20Sp=C3=B6rlein?= Date: Fri, 26 Apr 2013 12:27:30 +0000 Subject: [PATCH] Don't appease clang static analyzer after all and roll back the free(3) of mntbuf ... again. There's no point in doing useless extra work when we're about to exit. See also r240565. Not reading file history: uqs --- bin/df/df.c | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/df/df.c b/bin/df/df.c index b83603f6fdc7..13ef129cf09e 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -296,7 +296,6 @@ main(int argc, char *argv[]) prtstat(&mntbuf[i], &maxwidths); if (cflag) prtstat(&totalbuf, &maxwidths); - free(mntbuf); return (rv); }