freeEncryptedBufferPointer function
- Pointer<
NativeEncryptedBuffer> encryptedBufferPtr
Implementation
void freeEncryptedBufferPointer(Pointer<NativeEncryptedBuffer> encryptedBufferPtr) {
if (encryptedBufferPtr == nullptr) return;
freePointer(encryptedBufferPtr.ref.buffer.data);
calloc.free(encryptedBufferPtr);
}