Bash-4.2 patch 21
This commit is contained in:
parent
42a5896e24
commit
952a575888
2 changed files with 3 additions and 3 deletions
|
|
@ -737,7 +737,7 @@ assign_vars:
|
||||||
xfree (t1);
|
xfree (t1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
var = bind_read_variable (varname, t);
|
var = bind_read_variable (varname, t ? t : "");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -798,7 +798,7 @@ assign_vars:
|
||||||
xfree (t);
|
xfree (t);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
var = bind_read_variable (list->word->word, input_string);
|
var = bind_read_variable (list->word->word, input_string ? input_string : "");
|
||||||
|
|
||||||
if (var)
|
if (var)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@
|
||||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||||
looks for to find the patch level (for the sccs version string). */
|
looks for to find the patch level (for the sccs version string). */
|
||||||
|
|
||||||
#define PATCHLEVEL 20
|
#define PATCHLEVEL 21
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue