コード例 #1
0
ファイル: config.go プロジェクト: jgrocho/go-git2
func (cfg *Config) Free() {
	C.git_config_free(cfg.git_config)
}
コード例 #2
0
ファイル: config.go プロジェクト: wid/git2go
func (c *Config) Free() {
	runtime.SetFinalizer(c, nil)
	C.git_config_free(c.ptr)
}
コード例 #3
0
ファイル: git.go プロジェクト: fsouza/gogit
// Free is used to deallocate the Config instance. It should be called to
// finish the instance. You can use it with the defer statement:
//
//     // get repository instance
//     config, err := repo.Config()
//     // check error
//     defer config.Free()
func (c *Config) Free() {
	C.git_config_free(c.config)
}