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
Hello
I found that using void ELClientSocket::send(const char* data, int len)
with any string containing \0 leads to the sending of a truncated string.
I don't understand well the lines _elc->Request(data, strlen(data)); if (data != NULL && len > 0) { _elc->Request(data, len); }
but I tried to comment out the first line and it seems to be functionnal.
Can you please confirm I didn't make a mistake, and eventually patch this class?
Your libs are really usefull to me, thank you a lot!
Thanks you for your attention.
The text was updated successfully, but these errors were encountered:
Hello
I found that using
void ELClientSocket::send(const char* data, int len)
with any string containing \0 leads to the sending of a truncated string.
I don't understand well the lines
_elc->Request(data, strlen(data)); if (data != NULL && len > 0) { _elc->Request(data, len); }
but I tried to comment out the first line and it seems to be functionnal.
Can you please confirm I didn't make a mistake, and eventually patch this class?
Your libs are really usefull to me, thank you a lot!
Thanks you for your attention.
The text was updated successfully, but these errors were encountered: