diff options
| author | Michael Gehring <[email protected]> | 2016-01-04 15:02:21 +0100 |
|---|---|---|
| committer | Michael Gehring <[email protected]> | 2016-01-04 15:02:21 +0100 |
| commit | 51d3ead30d58d523cef5aaea1666c8e28a94dc42 (patch) | |
| tree | be077ceb6dc79a8ff2517891278253b1cfd524c6 /blob.go | |
| parent | 4ee13db86de9321cbea21c04c8608fb8f71735f3 (diff) | |
Don't drop CreateBlobFromChunks hintPath argument
Diffstat (limited to 'blob.go')
| -rw-r--r-- | blob.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ func (repo *Repository) CreateBlobFromChunks(hintPath string, callback BlobChunk var chintPath *C.char = nil if len(hintPath) > 0 { - C.CString(hintPath) + chintPath = C.CString(hintPath) defer C.free(unsafe.Pointer(chintPath)) } oid := C.git_oid{} |
