git.sophuwu.com > rbprompt
malformed hex code casues parse error. previously would be ignored and printed
sophuwu sophie@skisiel.com
Sat, 22 Mar 2025 15:17:11 +0100
commit

8e0d63e41f1380ed674b7e1449dff5be00f28c1c

parent

274f3a74c73b6df745f7e3395890ffc0272e0348

1 files changed, 9 insertions(+), 2 deletions(-)

jump to
M rbprompt.gorbprompt.go

@@ -259,18 +259,25 @@ }

if *i < len(*f)-1 && (*f)[*i+1] == '#' { *i++ var rgb hex - for k := 0; *i < len(*f) && k < 6; k++ { + k := 0 + for ; *i < len(*f)-1 && k < 6; k++ { *i++ if !rgb.readByte(k, (*f)[*i]) { - return errFn("parse error: invalid hex colour " + (*f)[j:*i]) + goto parseError } } + if k < 6 { + goto parseError + } *dst += rgb.escape(s) } else { *dst += (*rbfn)(s) } *i++ return nil +parseError: + *i++ + return errFn("parse error: invalid hex colour " + (*f)[j:*i]) } // Next generates the next prompt string based on the format string and the current state of the PS struct.