fix off-by-one
This commit is contained in:
parent
68495337bc
commit
82ff37520f
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ checkAttr (h, attrs, cwd) want file = do
|
||||||
| '\0' `elem` s = if "\0" `isSuffixOf` s
|
| '\0' `elem` s = if "\0" `isSuffixOf` s
|
||||||
then
|
then
|
||||||
let bits = segment (== '\0') s
|
let bits = segment (== '\0') s
|
||||||
in if length bits == numattrs * 3
|
in if length bits == (numattrs * 3) + 1
|
||||||
then Just $ getattrvalues bits []
|
then Just $ getattrvalues bits []
|
||||||
else Nothing -- more attributes to come
|
else Nothing -- more attributes to come
|
||||||
else Nothing -- output incomplete
|
else Nothing -- output incomplete
|
||||||
|
|
Loading…
Reference in a new issue