Commit bc81220d by Russell Belfer

minor cleanups

parent 947a58c1
...@@ -298,15 +298,15 @@ static int print_binary_hunk(diff_print_info *pi, git_blob *old, git_blob *new) ...@@ -298,15 +298,15 @@ static int print_binary_hunk(diff_print_info *pi, git_blob *old, git_blob *new)
old_data_len = old ? git_blob_rawsize(old) : 0; old_data_len = old ? git_blob_rawsize(old) : 0;
new_data_len = new ? git_blob_rawsize(new) : 0; new_data_len = new ? git_blob_rawsize(new) : 0;
if (!git__is_ulong(old_data_len) || !git__is_ulong(new_data_len)) { /* The git_delta function accepts unsigned long only */
error = GIT_EBUFS; if (!git__is_ulong(old_data_len) || !git__is_ulong(new_data_len))
goto done; return GIT_EBUFS;
}
out = &deflate; out = &deflate;
inflated_len = (unsigned long)new_data_len; inflated_len = (unsigned long)new_data_len;
if ((error = git_zstream_deflatebuf(out, new_data, (size_t)new_data_len)) < 0) if ((error = git_zstream_deflatebuf(
out, new_data, (size_t)new_data_len)) < 0)
goto done; goto done;
/* The git_delta function accepts unsigned long only */ /* The git_delta function accepts unsigned long only */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment