diff options
| author | Russ Cox <rsc@swtch.com> | 2020-01-13 23:17:16 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2020-01-13 23:17:39 -0500 |
| commit | 573169dd88ac5ca0cf75d09464dddba398e83011 (patch) | |
| tree | 945bd608a8e1076d21d81b5a440ac026c041b3ff /src/cmd/acme/fns.h | |
| parent | 125cfe1c0d29541135eac6da676ed9b48930e38b (diff) | |
| download | plan9port-573169dd88ac5ca0cf75d09464dddba398e83011.tar.gz plan9port-573169dd88ac5ca0cf75d09464dddba398e83011.zip | |
acme: fix buffer overflow introduced in parsetag refactor
Diffstat (limited to 'src/cmd/acme/fns.h')
| -rw-r--r-- | src/cmd/acme/fns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acme/fns.h b/src/cmd/acme/fns.h index fece1dbd..c0339c23 100644 --- a/src/cmd/acme/fns.h +++ b/src/cmd/acme/fns.h @@ -95,7 +95,7 @@ void flushwarnings(void); void startplumbing(void); long nlcount(Text*, long, long, long*); long nlcounttopos(Text*, long, long, long); -Rune* parsetag(Window*, int*); +Rune* parsetag(Window*, int, int*); Runestr runestr(Rune*, uint); Range range(int, int); |
