You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run the server example in order to just print the messages received on the port.
My intent is verify all messages sent by a software called M32Edit (from Behringer).
However my server application is crashing after I start my client application (the M32Edit).
I'm receiving the error: panic: runtime error: index out of range
if typetags[0] != ',' { is being run where typetags is an empty string - this produces the index out of range error. This is a bug in the library, and additional checks should be added.
if typetags[0] != ',' { is being run where typetags is an empty string - this produces the index out of range error. This is a bug in the library, and additional checks should be added.
In the current code, it does a length check on typetags before it tries to check its values.
if len(typetags) == 0 {
return nil
}
@cioban, is this still an issue with the current version of the library?
Hi
I'm trying to run the server example in order to just print the messages received on the port.
My intent is verify all messages sent by a software called M32Edit (from Behringer).
However my server application is crashing after I start my client application (the M32Edit).
I'm receiving the error: panic: runtime error: index out of range
Here is my code:
Here is the output:
I believe this is an issue with the library.
Can you please help me to solve this issue?
The text was updated successfully, but these errors were encountered: