We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In datefromHttpDateString, the following two lines:
if(((size_t)convertedCount != stringLength) || (usedBytes < 0L)) { return(NULL); } stringBuffer[convertedCount] = 0;
should instead be:
if(((size_t)convertedCount != stringLength) || (usedBytes < 0L)) { return(nil); } stringBuffer[usedBytes] = '\0';
The text was updated successfully, but these errors were encountered:
Ah, you're right. John must have gotten that wrong. characters can be less than bytes used.
Sorry, something went wrong.
a character can take up more than a byte. Fixes issue #5
1b75ccb
No branches or pull requests
In datefromHttpDateString, the following two lines:
should instead be:
The text was updated successfully, but these errors were encountered: