svn commit: r314191 - head/lib/libcam

Ngie Cooper ngie at FreeBSD.org
Fri Feb 24 06:49:33 UTC 2017


Author: ngie
Date: Fri Feb 24 06:49:31 2017
New Revision: 314191
URL: https://svnweb.freebsd.org/changeset/base/314191

Log:
  Fix up r314189
  
  The conditional in do_buff_decode(..) after the while loop was accidentally
  inverted. Only increment the pointer for fmt if it's not NUL.
  
  MFC after:	2 weeks
  X-MFC with:	r314189
  Reported by:	pstef
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/libcam/scsi_cmdparse.c

Modified: head/lib/libcam/scsi_cmdparse.c
==============================================================================
--- head/lib/libcam/scsi_cmdparse.c	Fri Feb 24 06:28:58 2017	(r314190)
+++ head/lib/libcam/scsi_cmdparse.c	Fri Feb 24 06:49:31 2017	(r314191)
@@ -169,7 +169,7 @@ do_buff_decode(u_int8_t *buff, size_t le
 
 				fmt++;
 			}
-			if (*fmt == '\0')
+			if (*fmt != '\0')
 				fmt++;	/* Skip '}' */
 			field_name[i] = '\0';
 			break;


More information about the svn-src-all mailing list