-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mountinfo: GetMountsFromReader() remove redundant switch, fix dropped "optional" fields #81
Conversation
case sepIdx == 7: | ||
p.Optional = fields[6] | ||
default: | ||
p.Optional = strings.Join(fields[6:sepIdx-1], " ") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there's an off-by-one bug here; removing this switch caused it to panic;
--- FAIL: TestMountedBy (0.01s)
panic: runtime error: slice bounds out of range [6:5] [recovered]
panic: runtime error: slice bounds out of range [6:5]
- we return an error if
sepIdx == 5
(earlier check) - for
sepIdx == 6
we skipped (in this switch) - for
7
, we take field 6 (equivalent tofields[6:7]
, orfields[6:sepIdx]
) - for the "default" (else), we use
fields[6:sepIdx-1]
, which for (e.g.)sepIndex=8
would do the same assepIdx=7
, so we'd drop one value
2f3fda1
to
f791ef1
Compare
@kolyshkin PTAL |
f791ef1
to
5f460da
Compare
Looking further, I noticed that TestParseMountinfoExtraCases was not checking the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@AkihiroSuda ptal |
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
… fields This switch was implementing the exact same check as is done in strings.Join(); https://cs.opensource.google/go/go/+/refs/tags/go1.16.7:src/strings/strings.go;l=421-427 This only difference removing this switch makes is that it will assign an empty string to p.Optional if no optional fields are present, but given that an empty string is the default value for p.Optional, this should make no difference. This also revealed an off-by-one bug: Before this change: - we return an error if `sepIdx == 5` (earlier check) - for `sepIdx == 6` we skipped (in this switch) - for `7`, we take field 6 (equivalent to `fields[6:7]`, or `fields[6:sepIdx]`) - for the "default" (else), we use `fields[6:sepIdx-1]`, which for (e.g.) `sepIndex=8` would do the same as `sepIdx=7`, so we'd drop one value. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
5f460da
to
df5b314
Compare
This switch was implementing the exact same check as is done in
strings.Join(); https://cs.opensource.google/go/go/+/refs/tags/go1.16.7:src/strings/strings.go;l=421-427
This only difference removing this switch makes is that it will assign
an empty string to p.Optional if no optional fields are present, but
given that an empty string is the default value for p.Optional, this
should make no difference.
This also revealed an off-by-one bug:
Before this change:
sepIdx == 5
(earlier check)sepIdx == 6
we skipped (in this switch)7
, we take field 6 (equivalent tofields[6:7]
, orfields[6:sepIdx]
)fields[6:sepIdx-1]
, which for (e.g.)sepIndex=8
would do the same as
sepIdx=7
, so we'd drop one value.