mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
sh: Fix use-after-free when attempting to modify a read-only variable.
Reported by: bapt MFC after: 1 week
This commit is contained in:
parent
a2acf60284
commit
d41b2be159
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ setvareq(char *s, int flags)
|
|||
if (vp->flags & VREADONLY) {
|
||||
if ((flags & (VTEXTFIXED|VSTACK)) == 0)
|
||||
ckfree(s);
|
||||
error("%.*s: is read only", vp->name_len, s);
|
||||
error("%.*s: is read only", vp->name_len, vp->text);
|
||||
}
|
||||
if (flags & VNOSET) {
|
||||
if ((flags & (VTEXTFIXED|VSTACK)) == 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue