svn commit: r264275 - head/usr.sbin/bhyvectl

John Baldwin jhb at FreeBSD.org
Tue Apr 8 20:54:13 UTC 2014


Author: jhb
Date: Tue Apr  8 20:54:13 2014
New Revision: 264275
URL: http://svnweb.freebsd.org/changeset/base/264275

Log:
  Explicitly initialize 'vmname' to NULL.
  
  Reviewed by:	grehan

Modified:
  head/usr.sbin/bhyvectl/bhyvectl.c

Modified: head/usr.sbin/bhyvectl/bhyvectl.c
==============================================================================
--- head/usr.sbin/bhyvectl/bhyvectl.c	Tue Apr  8 20:50:48 2014	(r264274)
+++ head/usr.sbin/bhyvectl/bhyvectl.c	Tue Apr  8 20:54:13 2014	(r264275)
@@ -569,6 +569,7 @@ main(int argc, char *argv[])
 	};
 
 	vcpu = 0;
+	vmname = NULL;
 	assert_lapic_lvt = -1;
 	progname = basename(argv[0]);
 


More information about the svn-src-all mailing list