Merge pull request #752 from robertbaldyga/fix-example-valgrind
example: Fix problems reported by valgrind
This commit is contained in:
commit
64167576db
@ -161,6 +161,8 @@ int initialize_cache(ocf_ctx_t ctx, ocf_cache_t *cache)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto err_cache;
|
goto err_cache;
|
||||||
|
|
||||||
|
ocf_volume_destroy(volume);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_cache:
|
err_cache:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright(c) 2019-2021 Intel Corporation
|
* Copyright(c) 2019-2022 Intel Corporation
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* 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->name = ocf_uuid_to_str(uuid);
|
||||||
myvolume->mem = malloc(VOL_SIZE);
|
myvolume->mem = malloc(VOL_SIZE);
|
||||||
|
if (!myvolume->mem)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
memset(myvolume->mem, 0, VOL_SIZE);
|
||||||
|
|
||||||
printf("VOL OPEN: (name: %s)\n", myvolume->name);
|
printf("VOL OPEN: (name: %s)\n", myvolume->name);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user