After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 702412 - Empty tree can also be null
Empty tree can also be null
Status: RESOLVED FIXED
Product: libgit2-glib
Classification: Core
Component: General
git master
Other Linux
: Normal normal
: ---
Assigned To: gitg-maint
gitg-maint
Depends on:
Blocks: 702259
 
 
Reported: 2013-06-16 20:48 UTC by Sindhu S
Modified: 2019-02-22 03:52 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix for trees can also be NULL (801 bytes, patch)
2013-06-16 20:48 UTC, Sindhu S
none Details | Review

Description Sindhu S 2013-06-16 20:48:07 UTC
Created attachment 246981 [details] [review]
Fix for trees can also be NULL

"You can pass NULL to indicate an empty tree, although it is an error to pass NULL for both the old_tree and new_tree." [1]

The code in libgit2-glib/ggit-diff.c indicated that

       g_return_val_if_fail (GGIT_IS_TREE (old_tree), NULL);
       g_return_val_if_fail (GGIT_IS_TREE (new_tree), NULL);

...trees should not be NULL hence the bug 702259

[1] http://libgit2.github.com/libgit2/#HEAD/group/diff/git_diff_tree_to_tree

Patch attached.
Comment 1 Ignacio Casal Quinteiro (nacho) 2013-06-16 21:09:31 UTC
I'd keep the checks, but explicitly check also for NULL.
Comment 2 jessevdk@gmail.com 2013-06-18 09:24:22 UTC
something like:

g_return_val_if_fail (old_tree == NULL || GGIT_IS_TREE (old_tree), NULL);
g_return_val_if_fail (new_tree == NULL || GGIT_IS_TREE (new_tree), NULL);
g_return_val_if_fail (old_tree != NULL || new_tree != NULL, NULL);
Comment 3 Ignacio Casal Quinteiro (nacho) 2013-06-19 16:31:03 UTC
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.
Comment 4 Sindhu S 2013-06-20 04:04:07 UTC
Can I have the commit ID please? I am unable to find it in master.
Comment 5 Sindhu S 2013-06-20 05:27:05 UTC
Found it. 

Committed to master in 8a95d39
Available at https://git.gnome.org/browse/libgit2-glib/commit/?id=8a95d39e9098af4a4d18f47abfc4420a596b4acc
Comment 6 jessevdk@gmail.com 2013-06-20 07:23:05 UTC
From libgit2 docs: "You can pass NULL to indicate an empty tree, although it is an error to pass NULL for both the old_tree and new_tree."

I think you should check (like I suggested above) that either old_tree or new_tree should be non NULL.
Comment 7 Sindhu S 2013-06-20 07:31:30 UTC
> I think you should check (like I suggested above) that either old_tree or
> new_tree should be non NULL.

Err, nacho already fixed and committed this to wip/development branch. So now I am working on the bug 702259.
Comment 8 jessevdk@gmail.com 2013-06-20 07:33:30 UTC
I'm just pointing out that the fix isn't 100% correct.
Comment 9 Ignacio Casal Quinteiro (nacho) 2013-06-20 07:36:58 UTC
Thanks for the review, didn't realized about that part of the docs.