mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Correctly handle input files beginning with several newlines
Also, fix some comments (minor) Signed-off-by: David Wagner <david.wagner@free-electrons.com>
This commit is contained in:
parent
627182ea9d
commit
dbee61db43
1 changed files with 5 additions and 5 deletions
|
@ -213,18 +213,18 @@ int main(int argc, char **argv)
|
|||
/* Replace newlines separating variables with \0 */
|
||||
for (fp = 0, ep = 0 ; fp < filesize ; fp++) {
|
||||
if (filebuf[fp] == '\n') {
|
||||
if (fp == 0) {
|
||||
if (ep == 0) {
|
||||
/*
|
||||
* Newline at the beginning of the file ?
|
||||
* Ignore it.
|
||||
* Newlines at the beginning of the file ?
|
||||
* Ignore them.
|
||||
*/
|
||||
continue;
|
||||
} else if (filebuf[fp-1] == '\\') {
|
||||
/*
|
||||
* Embedded newline in a variable.
|
||||
*
|
||||
* The backslash was added to the envptr ;
|
||||
* rewind and replace it with a newline
|
||||
* The backslash was added to the envptr; rewind
|
||||
* and replace it with a newline
|
||||
*/
|
||||
ep--;
|
||||
envptr[ep++] = '\n';
|
||||
|
|
Loading…
Reference in a new issue