diff options
author | Sergey Nikishin <nordsturm@yandex-team.ru> | 2011-04-24 18:33:50 +0400 |
---|---|---|
committer | Sergey Nikishin <nordsturm@yandex-team.ru> | 2011-04-24 18:43:08 +0400 |
commit | 1d1735fe03a53482c6545252bd567555d5d9b487 (patch) | |
tree | 5479fb536bb09e1e4c88a8100a8c038f39253253 /src/blob.c | |
parent | 411823a3d0614d1268c84bd2add1b65b281ec824 (diff) | |
download | libgit2-1d1735fe03a53482c6545252bd567555d5d9b487.tar.gz |
Add error processing in git_blob_create_frombuffer()
Diffstat (limited to 'src/blob.c')
-rw-r--r-- | src/blob.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -64,7 +64,10 @@ int git_blob_create_frombuffer(git_oid *oid, git_repository *repo, const void *b if ((error = git_odb_open_wstream(&stream, repo->db, len, GIT_OBJ_BLOB)) < GIT_SUCCESS) return error; - stream->write(stream, buffer, len); + if ((error = stream->write(stream, buffer, len)) < GIT_SUCCESS) { + stream->free(stream); + return error; + } error = stream->finalize_write(oid, stream); stream->free(stream); |