fix memory leak

This commit is contained in:
RSWilli
2023-09-25 09:40:56 +02:00
parent 036a309a11
commit 7eb5c3ef46

View File

@@ -32,7 +32,7 @@ func NewInterpolationControlSource() *InterpolationControlSource {
cCs := C.gst_interpolation_control_source_new()
return &InterpolationControlSource{
Object: wrapObject(glib.TransferNone(unsafe.Pointer(cCs))),
Object: wrapObject(glib.TransferFull(unsafe.Pointer(cCs))),
}
}