change "if (lp &&" to "if lp != NULL &&".
authortb <tb@openbsd.org>
Mon, 4 Dec 2017 15:00:03 +0000 (15:00 +0000)
committertb <tb@openbsd.org>
Mon, 4 Dec 2017 15:00:03 +0000 (15:00 +0000)
pointed out by krw

sbin/dhclient/dhclient.c

index 664ea2b..94a8560 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dhclient.c,v 1.533 2017/12/04 14:56:07 tb Exp $       */
+/*     $OpenBSD: dhclient.c,v 1.534 2017/12/04 15:00:03 tb Exp $       */
 
 /*
  * Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -2541,7 +2541,7 @@ get_recorded_lease(struct interface_info *ifi)
                break;
        }
 
-       if (lp && lp->epoch == 0)
+       if (lp != NULL && lp->epoch == 0)
                time(&lp->epoch);
 
        return lp;