Commit 1cad5718 authored by Eric Covener's avatar Eric Covener
Browse files

remove null check

fails in maintainer mode w/ __attribute__(nonnull))

util.c:576:10: error: nonnull parameter 'name' will evaluate to 'true'
on first encounter [-Werror,-Wpointer-bool-conversion]




git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1855755 13f79535-47bb-0310-9956-ffa450edef68
parent 0aad171a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -573,7 +573,7 @@ AP_DECLARE(void) ap_no2slash_ex(char *name, int is_fs_path)

    char *d, *s;

    if (!name || !*name) {
    if (!*name) {
        return;
    }