be pedantic with sizeof use
authorjsg <jsg@openbsd.org>
Fri, 22 May 2015 13:48:25 +0000 (13:48 +0000)
committerjsg <jsg@openbsd.org>
Fri, 22 May 2015 13:48:25 +0000 (13:48 +0000)
no change in behaviour as sizeof(char **) is the same as sizeof(char *)
ok otto@ guenther@

libexec/ld.so/path.c

index 4efd85b..34a52db 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: path.c,v 1.5 2015/01/22 05:48:17 deraadt Exp $        */
+/*     $OpenBSD: path.c,v 1.6 2015/05/22 13:48:25 jsg Exp $    */
 
 /*
  * Copyright (c) 2013 Kurt Miller <kurt@intricatesoftware.com>
@@ -42,7 +42,7 @@ _dl_split_path(const char *searchpath)
        /* one more for NULL entry */
        count++;
 
-       retval = _dl_reallocarray(NULL, count, sizeof(retval));
+       retval = _dl_reallocarray(NULL, count, sizeof(*retval));
        if (retval == NULL)
                return (NULL);