Bash-4.2 patch 11
This commit is contained in:
parent
680d15e19f
commit
47a7673055
2 changed files with 6 additions and 1 deletions
5
assoc.c
5
assoc.c
|
|
@ -77,6 +77,11 @@ assoc_insert (hash, key, value)
|
||||||
b = hash_search (key, hash, HASH_CREATE);
|
b = hash_search (key, hash, HASH_CREATE);
|
||||||
if (b == 0)
|
if (b == 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
/* If we are overwriting an existing element's value, we're not going to
|
||||||
|
use the key. Nothing in the array assignment code path frees the key
|
||||||
|
string, so we can free it here to avoid a memory leak. */
|
||||||
|
if (b->key != key)
|
||||||
|
free (key);
|
||||||
FREE (b->data);
|
FREE (b->data);
|
||||||
b->data = value ? savestring (value) : (char *)0;
|
b->data = value ? savestring (value) : (char *)0;
|
||||||
return (0);
|
return (0);
|
||||||
|
|
|
||||||
|
|
@ -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 10
|
#define PATCHLEVEL 11
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue