diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-02 23:18:46 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-02 23:18:46 +0200 |
commit | c1562daee03b1f077befb970ae3380cf52b2c679 (patch) | |
tree | 202a27105d7f70cb885c4533cccdf88b067f67da /sys/src/libhtml/build.c | |
parent | b14138c2ae17ac725bd48ab736414770aed6d656 (diff) |
libhtml: fix double free of form action
Diffstat (limited to 'sys/src/libhtml/build.c')
-rw-r--r-- | sys/src/libhtml/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libhtml/build.c b/sys/src/libhtml/build.c index 7855d8bde..62dcc14ba 100644 --- a/sys/src/libhtml/build.c +++ b/sys/src/libhtml/build.c @@ -1187,7 +1187,7 @@ getitems(ItemSource* is, uchar* data, int datalen) additem(ps, textit(ps, prompt), tok); frm = newform(++is->nforms, nil, - di->base, + _Strdup(di->base), target, HGet, di->forms); |