1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

miracle-wfdctl: fix pointer check issue

This commit is contained in:
Derek Dai 2017-03-21 23:28:41 +08:00 committed by edurenye
parent 0a1139401b
commit 0fceb2b1f0

View file

@ -438,7 +438,7 @@ error:
static bool find_strv(const char *str, char **strv)
{
while(strv) {
while(*strv) {
if(!strcmp(str, *strv)) {
return true;
}