-
Notifications
You must be signed in to change notification settings - Fork 25
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
IndexOutOfRangeException in OSCPackerString.BytesToValue() #31
Comments
Hi! I apologize very much for such a late response. I will fix this error soon as possibly. |
Fixed in c9622a8. Thanks! |
github-actions bot
pushed a commit
that referenced
this issue
Jan 28, 2024
## [1.20.4](v1.20.3...v1.20.4) (2024-01-28) ### Bug Fixes * **ci:** fixed issue [#31](#31) ([6658542](6658542))
github-actions bot
pushed a commit
that referenced
this issue
Jan 28, 2024
## [1.20.4](v1.20.3...v1.20.4) (2024-01-28) ### Bug Fixes * **ci:** fixed issue [#31](#31) ([6658542](6658542))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
with OSCReceiver, receiving OSCMessages of the form
/orientation/supperware/quaternion 0.9975586 0.06152344 -0.01367188 -0.01708984
throws:the line in question is:
i dont know exactly how we get here, but at the time of the exception we have
position == buffer.Length
. perhaps theposition < buffer.Length
check is meant to guard against this, but of course it does not help since it happens after the invalid indexing.swapping the conditions to:
seems to fix it.
The text was updated successfully, but these errors were encountered: