qssb_enable_policy: check for empty str instead of NULL ptr

This was missed in 0a851790b8
这个提交包含在:
Albert S. 2020-09-26 16:09:43 +02:00
父节点 dbdb35db37
当前提交 763c65c3fe
共有 1 个文件被更改,包括 1 次插入1 次删除

2
qssb.h
查看文件

@ -489,7 +489,7 @@ int qssb_enable_policy(struct qssb_policy *policy)
if(policy->path_policies != NULL)
{
if(policy->chroot_target_path == NULL)
if(*policy->chroot_target_path == '\0')
{
char random_str[17];
if(random_string(random_str, sizeof(random_str)) == 16)