mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Address warning about sip_tobin by Visual Studio
Message was: Warning: C4551 function call missing argument
This commit is contained in:
parent
9add0e11d4
commit
fc9fe8f17c
3 changed files with 7 additions and 2 deletions
|
@ -11,6 +11,9 @@
|
|||
* --------------------------------------------------------------------------
|
||||
* HISTORY:
|
||||
*
|
||||
* 2017-11-03 (Sebastian Pipping)
|
||||
* - Hide sip_tobin and sip_binof unless SIPHASH_TOBIN macro is defined
|
||||
*
|
||||
* 2017-07-25 (Vadim Zeitlin)
|
||||
* - Fix use of SIPHASH_MAIN macro
|
||||
*
|
||||
|
@ -151,6 +154,8 @@ static struct sipkey *sip_tokey(struct sipkey *key, const void *src) {
|
|||
} /* sip_tokey() */
|
||||
|
||||
|
||||
#ifdef SIPHASH_TOBIN
|
||||
|
||||
#define sip_binof(v) sip_tobin((unsigned char[8]){ 0 }, (v))
|
||||
|
||||
static void *sip_tobin(void *dst, uint64_t u64) {
|
||||
|
@ -158,6 +163,8 @@ static void *sip_tobin(void *dst, uint64_t u64) {
|
|||
return dst;
|
||||
} /* sip_tobin() */
|
||||
|
||||
#endif /* SIPHASH_TOBIN */
|
||||
|
||||
|
||||
static void sip_round(struct siphash *H, const int rounds) {
|
||||
int i;
|
||||
|
|
|
@ -6643,7 +6643,6 @@ hash(XML_Parser parser, KEY s)
|
|||
{
|
||||
struct siphash state;
|
||||
struct sipkey key;
|
||||
(void)sip_tobin;
|
||||
(void)sip24_valid;
|
||||
copy_salt_to_sipkey(parser, &key);
|
||||
sip24_init(&state, &key);
|
||||
|
|
|
@ -491,7 +491,6 @@ START_TEST(test_siphash_spec)
|
|||
const uint64_t expected = _SIP_ULL(0xa129ca61U, 0x49be45e5U);
|
||||
struct siphash state;
|
||||
struct sipkey key;
|
||||
(void)sip_tobin;
|
||||
|
||||
sip_tokey(&key,
|
||||
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09"
|
||||
|
|
Loading…
Add table
Reference in a new issue