mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-31 03:21:32 +00:00
Fix uninitialized variable problem in hush shell
Patch by Lars Rostock, 26 Sep 2005
This commit is contained in:
parent
fb34a9a201
commit
e98f68be94
2 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,9 @@
|
||||||
Changes for U-Boot 1.1.4:
|
Changes for U-Boot 1.1.4:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Fix uninitialized variable problem in hush shell
|
||||||
|
Patch by Lars Rostock, 26 Sep 2005
|
||||||
|
|
||||||
* Undo change of f6e20fc6ca... to include/configs/trab.h
|
* Undo change of f6e20fc6ca... to include/configs/trab.h
|
||||||
(Must have been an accident?)
|
(Must have been an accident?)
|
||||||
|
|
||||||
|
|
|
@ -2389,6 +2389,7 @@ struct pipe *new_pipe(void) {
|
||||||
pi->progs = NULL;
|
pi->progs = NULL;
|
||||||
pi->next = NULL;
|
pi->next = NULL;
|
||||||
pi->followup = 0; /* invalid */
|
pi->followup = 0; /* invalid */
|
||||||
|
pi->r_mode = RES_NONE;
|
||||||
return pi;
|
return pi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue