diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-04-05 12:08:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 12:08:35 +0000 |
commit | bd4b9c3d571abede09b62621449a3565af5b917c (patch) | |
tree | 950453d119cc5add893ff7292b868dacec638221 /vendor/github.com/BurntSushi/toml/lex.go | |
parent | 5e821f7339bcfe7b653a2867c7637527d29efd79 (diff) | |
download | podman-bd4b9c3d571abede09b62621449a3565af5b917c.tar.gz podman-bd4b9c3d571abede09b62621449a3565af5b917c.tar.bz2 podman-bd4b9c3d571abede09b62621449a3565af5b917c.zip |
build(deps): bump github.com/BurntSushi/toml from 1.0.0 to 1.1.0
Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](https://github.com/BurntSushi/toml/compare/v1.0.0...v1.1.0)
---
updated-dependencies:
- dependency-name: github.com/BurntSushi/toml
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/BurntSushi/toml/lex.go')
-rw-r--r-- | vendor/github.com/BurntSushi/toml/lex.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/github.com/BurntSushi/toml/lex.go b/vendor/github.com/BurntSushi/toml/lex.go index 63ef20f47..ce7f546b4 100644 --- a/vendor/github.com/BurntSushi/toml/lex.go +++ b/vendor/github.com/BurntSushi/toml/lex.go @@ -128,6 +128,11 @@ func (lx lexer) getPos() Position { } func (lx *lexer) emit(typ itemType) { + // Needed for multiline strings ending with an incomplete UTF-8 sequence. + if lx.start > lx.pos { + lx.error(errLexUTF8{lx.input[lx.pos]}) + return + } lx.items <- item{typ: typ, pos: lx.getPos(), val: lx.current()} lx.start = lx.pos } |