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
Please look at the following functions
- (YPName *)checkName:(size_t *)idx { NSString *name = @""; YPName *pdfName; NSUInteger i = *idx; ++i; for (; i < dataLength && !isBlank(rawData[i]) && rawData[i]!='>' && rawData[i]!='/'; ++i) { char buffer[] = {rawData[i], 0}; //Here is interrupted. name = [name stringByAppendingString:@(buffer)]; //Thread 1:signal SIGABRT } *idx = i; pdfName = (YPName *)name; return pdfName; }
The text was updated successfully, but these errors were encountered:
Please be more explicit. What is the problem here?
Sorry, something went wrong.
If there is no name in the PDF format, it causes the program to crash.
Can you attach a PDF which have this problem?
test.pdf
No branches or pull requests
Please look at the following functions
The text was updated successfully, but these errors were encountered: