of: fix CONFIG_CMDLINE_EXTEND
authorColin Cross <ccross@android.com>
Thu, 7 Mar 2013 03:10:29 +0000 (19:10 -0800)
committerColin Cross <ccross@android.com>
Fri, 18 Apr 2014 03:02:30 +0000 (20:02 -0700)
commita2acc58bc7460a03627f20842a7169d7a1328299
tree7699e67d5e5954ff6775ee98cff9a7fe27206b89
parenta0f3f0f28e1636405b4c736eb7b9bd557cf11ad7
of: fix CONFIG_CMDLINE_EXTEND

strlcat takes the size of the buffer, not the number of characters
to concatenate.  If the size of the device tree command line p is
larger than the CONFIG_CMDLINE string data, then strcat(data, p, l)
will hit a BUG_ON because strlen(data) > l.

Replace the second strlcat with a strncpy plus a manual null
termination.

Also rearrange the code to reduce indent depth to make it more
readable, and replace data with a char *cmdline to avoid extra
casts.

Signed-off-by: Colin Cross <ccross@android.com>
drivers/of/fdt.c