Don't drop CreateBlobFromChunks hintPath argument #280

Merged
ebfe merged 1 commits from hint-path into master 2016-01-15 15:22:36 -06:00
1 changed files with 1 additions and 1 deletions

View File

@ -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{}