Bash-4.2 patch 13

This commit is contained in:
Chet Ramey 2011-11-22 20:02:41 -05:00
commit a48a8ac352
2 changed files with 5 additions and 2 deletions

View file

@ -25,6 +25,6 @@
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
looks for to find the patch level (for the sccs version string). */
#define PATCHLEVEL 12
#define PATCHLEVEL 13
#endif /* _PATCHLEVEL_H_ */

View file

@ -3706,7 +3706,10 @@ remove_quoted_nulls (string)
break;
}
else if (string[i] == CTLNUL)
i++;
{
i++;
continue;
}
prev_i = i;
ADVANCE_CHAR (string, slen, i);