Skip to content

Commit 97a7ddb

Browse files
author
Mike Burke
committed
Merge branch 'refs/heads/hotfix/set_bulk_data_null_input' into sdl_android_parent/master
2 parents 13bfa07 + 772901e commit 97a7ddb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sdl_android_lib/src/com/smartdevicelink/proxy/RPCStruct.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ public void setBulkData(byte[] bulkData) {
6262
if (bulkData != null) {
6363
this._bulkData = new byte[bulkData.length];
6464
System.arraycopy(bulkData, 0, _bulkData, 0, bulkData.length);
65-
//this._bulkData = bulkData;
65+
}
66+
else{
67+
this._bulkData = null;
6668
}
6769
}
6870

0 commit comments

Comments
 (0)