commit | 69355d7b5e5884d0dad257e3e93e5de86afd4ebc | [log] [tgz] |
---|---|---|
author | Wolfgang Denk <wd@denx.de> | Tue Oct 20 23:07:04 2009 +0200 |
committer | Wolfgang Denk <wd@denx.de> | Tue Oct 20 23:07:04 2009 +0200 |
tree | bb48f9d23c3c956a1b88e5b775e964e629864996 | |
parent | b99814dcd66dda79eb48c49c589c18cb8ff118c8 [diff] |
cpu/ppc4xx/fdt.c: avoid strcpy() to constant string strcpy() was iused with the target address being a pointer to a constant string, which potentially is read-only. Use a (writable) array of characters instead. Signed-off-by: Wolfgang Denk <wd@denx.de>