mirror of
https://github.com/espressif/mbedtls.git
synced 2025-06-15 05:21:21 +08:00
Fix compiler errors on many platforms.
Also added comment to explain why I added a seemingly pointless goto Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
2007d70a5a
commit
8fc45169f1
@ -3636,9 +3636,10 @@ void aead_multipart_encrypt( int key_type_arg, data_t *key_data,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
goto exit;
|
|
||||||
|
|
||||||
exit:
|
/* Goto is required to silence warnings about unused labels, as we
|
||||||
|
* don't actually do any test assertions in this function. */
|
||||||
|
goto exit;
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
@ -3688,9 +3689,9 @@ void aead_multipart_decrypt( int key_type_arg, data_t *key_data,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Goto is required to silence warnings about unused labels, as we
|
||||||
|
* don't actually do any test assertions in this function. */
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
exit:
|
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user