svn commit: r262394 - head/usr.bin/dtc

David Chisnall theraven at FreeBSD.org
Sun Feb 23 21:13:08 UTC 2014


Author: theraven
Date: Sun Feb 23 21:13:07 2014
New Revision: 262394
URL: http://svnweb.freebsd.org/changeset/base/262394

Log:
  Fix parsing multiple roots with whitespace between them.
  
  Patch by:   Patrick Wildt

Modified:
  head/usr.bin/dtc/fdt.cc

Modified: head/usr.bin/dtc/fdt.cc
==============================================================================
--- head/usr.bin/dtc/fdt.cc	Sun Feb 23 21:13:04 2014	(r262393)
+++ head/usr.bin/dtc/fdt.cc	Sun Feb 23 21:13:07 2014	(r262394)
@@ -1059,6 +1059,7 @@ device_tree::parse_roots(input_buffer &i
 		{
 			valid = false;
 		}
+		input.next_token();
 	}
 }
 


More information about the svn-src-head mailing list