1
0
Fork 0
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:
Derek Dai 2017-03-21 23:28:41 +08:00
parent 1d55e643c1
commit 7c3f32111d
No known key found for this signature in database
GPG key ID: E109CC97553EF009

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;
}