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
The client is using strlen to measure binary data length, this returns the number of bytes. The printers appear to use the actual number of characters, regardless of their size.
As the number of bytes will always be >= the number of characters, this doesn't appear to cause any issues.
Investigate using mb_strlen.
The text was updated successfully, but these errors were encountered:
The client is using
strlen
to measure binary data length, this returns the number of bytes. The printers appear to use the actual number of characters, regardless of their size.As the number of bytes will always be >= the number of characters, this doesn't appear to cause any issues.
Investigate using
mb_strlen
.The text was updated successfully, but these errors were encountered: