-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Error code bug in C++ when deleting an item #2
Comments
It would be awesome if this got fixed, I currently have to do a try catch and check the error type which it works but is throwing my code coverage on testing a little off. I rather not fork since I really wouldn't be adding any functionality to it, the library works great except for this small thing. |
I'd be very happy to accept a pull request with this fix and rebuild the natives/release a new version! I sadly don't have time to look into it myself at the moment though. |
Next week I will look into it and have a pull request made. No worries. |
I opened a pull request with your fix, I tested locally and works properly. |
Mind if you accept the pull request and close the issue as resolved? @goaaats |
I merged the pull request, thanks Omar! I probably won't have time to make releases for a little while, so I'll leave the ticket open till then and update it when I get around to it. |
@goaaats please create a new release |
@goaaats https://github.com/hrantzsch/keychain/releases - v1.3.0 migrates to new keychain API for macOS. I've created #4 which adds dependabot for automatically updating submodule, and a CI to update pre-compiled libraries as well. The library is currently in an unusable state until the pre-compiled libraries have been updated. I request you to merge the PR and create a new release as soon as possible 🙏🏻 |
@goaaats hello? |
After deleting successfully an item from keychain an error code is raised resulting in exception in C# code.
I run on this problem while testing the C# code on Windows.
Program.cs
Output:
The fix I am suggesting is changing the 50th line of main.cpp to
if (error->type != keychain::ErrorType::NoError)
similar to other functions.I have not actually tested the change I am suggesting but I am pretty sure this is where the error occurs(I'll try to re-compile the C++ code to test it). It would be awesome if you could verify.
The text was updated successfully, but these errors were encountered: