Skip to content

Commit

Permalink
fix NULL deref
Browse files Browse the repository at this point in the history
  • Loading branch information
madushan1000 committed Oct 27, 2021
1 parent 5858a65 commit e7e389f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gbinder_rpc_protocol.c
Expand Up @@ -200,7 +200,7 @@ gbinder_rpc_protocol_aidl3_read_rpc_header(
char** iface)
{
if (txcode > GBINDER_TRANSACTION(0,0,0)) {
iface = NULL;
*iface = NULL;
} else if (gbinder_reader_read_int32(reader, NULL)) {
gbinder_reader_read_int32(reader, NULL);
gbinder_reader_read_int32(reader, NULL);
Expand Down

0 comments on commit e7e389f

Please sign in to comment.