Merge pull request #752 from robertbaldyga/fix-example-valgrind

example: Fix problems reported by valgrind
This commit is contained in:
Robert Baldyga 2022-09-06 13:37:55 +02:00 committed by GitHub
commit 64167576db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -161,6 +161,8 @@ int initialize_cache(ocf_ctx_t ctx, ocf_cache_t *cache)
if (ret)
goto err_cache;
ocf_volume_destroy(volume);
return 0;
err_cache:

View File

@ -1,5 +1,5 @@
/*
* Copyright(c) 2019-2021 Intel Corporation
* Copyright(c) 2019-2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
@ -21,6 +21,10 @@ static int volume_open(ocf_volume_t volume, void *volume_params)
myvolume->name = ocf_uuid_to_str(uuid);
myvolume->mem = malloc(VOL_SIZE);
if (!myvolume->mem)
return -ENOMEM;
memset(myvolume->mem, 0, VOL_SIZE);
printf("VOL OPEN: (name: %s)\n", myvolume->name);