]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix incorrect sanity check 57/2957/1
authorEmmanuel Blot <emmanuel.blot@free.fr>
Mon, 19 Jan 2015 13:31:46 +0000 (14:31 +0100)
committerLionel Sambuc <lionel@minix3.org>
Wed, 18 Mar 2015 06:49:44 +0000 (07:49 +0100)
Remove invalid sanity check where an array is tested against NULL -
not a pointer

Change-Id: I3d5e33585e7f97a41124af4133e8a879ab21d972

minix/lib/libc/sys/ioctl.c

index f1eb9cd4e63d636bf5e165b0f62248ed910d2ed1..a0929526cb8204df9818b214792b72fd8b0f8b20 100644 (file)
@@ -39,7 +39,7 @@ static void rewrite_i2c_minix_to_netbsd(i2c_ioctl_exec_t *out,
        minix_i2c_ioctl_exec_t *in)
 {
   /* the only field that changes is iie_buf, everything else is the same */
-  if (in->iie_buflen > 0 && in->iie_buf != NULL) {
+  if (in->iie_buflen > 0 ) {
        memcpy(out->iie_buf, in->iie_buf, in->iie_buflen);
   }
 }