mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-15 04:42:06 +00:00
miracle-wfdctl: fix pointer check issue
This commit is contained in:
parent
1d55e643c1
commit
7c3f32111d
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ error:
|
|||
|
||||
static bool find_strv(const char *str, char **strv)
|
||||
{
|
||||
while(strv) {
|
||||
while(*strv) {
|
||||
if(!strcmp(str, *strv)) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue