Fixed an OF-tree off-by-one bug when adding a new property name.

This bug will cause the kernel booting to pause a long time.

Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
This commit is contained in:
Zhang Wei 2006-08-28 14:25:31 +08:00 committed by Jon Loeliger
parent 34c3c0e01d
commit 2f15776ccc
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ void ft_prop(struct ft_cxt *cxt, const char *name, const void *data, int sz)
if (off == -1) {
memcpy(cxt->p_end, name, strlen(name) + 1);
off = cxt->p_end - cxt->p;
cxt->p_end += strlen(name) + 2;
cxt->p_end += strlen(name) + 1;
}
/* now put offset from beginning of *STRUCTURE* */