fix bug in filter driver (#1365)

* pass null vendor data to otJoinerStart if it is not provided to filter driver
This commit is contained in:
Jorge Vergara
2017-02-21 23:18:02 -08:00
committed by Jonathan Hui
parent 40ee47b516
commit 22af02d1b8
+1 -1
View File
@@ -5282,7 +5282,7 @@ otLwfIoCtl_otJoinerStart(
pFilter->otVendorName,
pFilter->otVendorModel,
pFilter->otVendorSwVersion,
pFilter->otVendorData,
pFilter->otVendorData[0] == '\0' ? NULL : pFilter->otVendorData,
otLwfJoinerCallback,
pFilter)
);