Merge pull request #56 from imjfckm/fix-core-info
Fix get_core_info trying to access already freed UUID
This commit is contained in:
commit
3c94734d4e
@ -1831,8 +1831,10 @@ int cache_mngt_get_core_info(struct kcas_core_info *info)
|
|||||||
|
|
||||||
uuid = ocf_core_get_uuid(core);
|
uuid = ocf_core_get_uuid(core);
|
||||||
|
|
||||||
|
if (uuid->data) {
|
||||||
strlcpy(info->core_path_name, uuid->data,
|
strlcpy(info->core_path_name, uuid->data,
|
||||||
min(sizeof(info->core_path_name), uuid->size));
|
min(sizeof(info->core_path_name), uuid->size));
|
||||||
|
}
|
||||||
|
|
||||||
info->state = ocf_core_get_state(core);
|
info->state = ocf_core_get_state(core);
|
||||||
|
|
||||||
|
2
ocf
2
ocf
@ -1 +1 @@
|
|||||||
Subproject commit e7e0ad957d0b91d355338b383aa032437e9dd656
|
Subproject commit 6c869d97fbf2f3fe862e106317fb1d22914723b6
|
Loading…
Reference in New Issue
Block a user