Skip to content

Commit 702c4bb

Browse files
feliperodrimarkrtuttle
authored andcommitted
Keep assumptions in validity functions
Signed-off-by: Felipe R. Monteiro <[email protected]>
1 parent 495b7d7 commit 702c4bb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

test/cbmc/proofs/MQTT_DeserializeAck/MQTT_DeserializeAck_harness.c

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ void harness()
3535

3636
pIncomingPacket = allocateMqttPacketInfo( NULL );
3737
__CPROVER_assume( isValidMqttPacketInfo( pIncomingPacket ) );
38-
__CPROVER_assume( IMPLIES( pIncomingPacket != NULL, pIncomingPacket->remainingLength < REMAINING_LENGTH_MAX ) );
3938

4039
/* These are allocated for coverage of a NULL input. */
4140
pPacketId = malloc( sizeof( uint16_t ) );

test/cbmc/sources/mqtt_cbmc_state.c

+5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ bool isValidMqttPacketInfo( const MQTTPacketInfo_t * pPacketInfo )
6969
{
7070
bool isValid = true;
7171

72+
if( pPacketInfo != NULL )
73+
{
74+
isValid = isValid && pPacketInfo->remainingLength < REMAINING_LENGTH_MAX;
75+
}
76+
7277
return isValid;
7378
}
7479

0 commit comments

Comments
 (0)