fix(component): properly set features list in CountFacialFeatures

This commit is contained in:
fallenoak 2025-10-27 22:12:09 -05:00
parent cbe12747b8
commit 29535710fe
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -226,5 +226,7 @@ int32_t CountFacialFeatures(uint32_t varArrayLength, uint32_t** featuresListPtr)
featuresList[listIndex]++; featuresList[listIndex]++;
} }
return 0; *featuresListPtr = featuresList;
return 1;
} }