emulator: Extend BRSF bitmap

The current check of 8 bits is not enough with HFP 1.7
This commit is contained in:
Denis Kenzior 2014-01-20 21:41:23 -06:00
parent bef4d610a3
commit 36a21da227
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ static void brsf_cb(GAtServer *server, GAtServerRequestType type,
if (g_at_result_iter_next_number(&iter, &val) == FALSE)
goto fail;
if (val < 0 || val > 255)
if (val < 0 || val > 0xffff)
goto fail;
em->r_features = val;