Commit fb49bdf9c7837892154bf7efdb3db6c3ec63e396

Carlos Martín Nieto 2012-05-10T16:52:12

examples: update network examples error handling Use giterr_last() and make sure it's not NULL.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/examples/network/git2.c b/examples/network/git2.c
index aeb0e8f..c694762 100644
--- a/examples/network/git2.c
+++ b/examples/network/git2.c
@@ -30,8 +30,11 @@ int run_command(git_cb fn, int argc, char **argv)
 
 	// Run the command. If something goes wrong, print the error message to stderr
 	error = fn(repo, argc, argv);
-	if (error < GIT_SUCCESS)
-		fprintf(stderr, "Bad news:\n %s\n", git_error_last()->message);
+	if (error < GIT_SUCCESS) {
+		if (giterr_last() == NULL)
+			fprintf(stderr, "Error without message");
+		else
+			fprintf(stderr, "Bad news:\n %s\n", giterr_last()->message);
 
 	if(repo)
 		git_repository_free(repo);