-
Notifications
You must be signed in to change notification settings - Fork 133
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
Fix two issues pointed out by Coverity #221
Conversation
In bff014d (builtin rebase: support the `verbose` and `diffstat` options, 2018-09-04), we added a line that wanted to remove the `REBASE_DIFFSTAT` bit from the flags, but it used an incorrect negation. Found by Coverity. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In 06f5608 (bisect--helper: `bisect_start` shell function partially in C, 2019-01-02), we introduced a call to `get_oid()` and did not check whether it succeeded before using its output. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
/submit |
Submitted as pull.221.git.gitgitgadget@gmail.com |
f5fa20d
to
3667755
Compare
This branch is now known as |
This patch series was integrated into pu via git@1dc498b. |
3667755
to
f5fa20d
Compare
The PR was actually split in half, and the first patch can be found in |
This patch series was integrated into pu via git@d90f5fa. |
This patch series was integrated into pu via git@3ea2b34. |
This patch series was integrated into next via git@24125b3. |
This patch series was integrated into pu via git@ef72851. |
This patch series was integrated into pu via git@3ba8c38. |
This patch series was integrated into pu via git@da2f5e6. |
This patch series was integrated into pu via git@61aaf34. |
This patch series was integrated into pu via git@9344a71. |
This patch series was integrated into pu via git@2161b1d. |
This patch series was integrated into pu via git@e50b1d4. |
This patch series was integrated into pu via git@710f5c3. |
This patch series was integrated into pu via git@b172777. |
This patch series was integrated into pu via git@5b476dc. |
This patch series was integrated into next via git@5b476dc. |
This patch series was integrated into master via git@5b476dc. |
Closed via 5b476dc. |
I looked very briefly over the issues pointed out by Coverity, and decided to pluck these two low-hanging pieces of fruit.