From: Michael Orlitzky Date: Fri, 2 Mar 2018 13:52:19 +0000 (-0500) Subject: src/libadacl.c: remove two NULL checks around acl_free() calls. X-Git-Tag: v0.2.0~2 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=a940e75467931de75e969b3de97f21698ec6fa08;hp=a940e75467931de75e969b3de97f21698ec6fa08;p=apply-default-acl.git src/libadacl.c: remove two NULL checks around acl_free() calls. The acl_free() function will return ACL_ERROR and set errno to EINVAL if we pass it a null pointer; but aside from that, nothing bad happens, and removing the checks makes the code marginally cleaner. ---