Clear early GCC warning
parent
800af2323c
commit
cc4009450a
|
|
@ -237,6 +237,7 @@ cryptopp.dump: cryptlib.lib
|
||||||
cryptopp.map:
|
cryptopp.map:
|
||||||
$(LD) $(LDFLAGS) /DLL /MAP /MAPINFO:EXPORTS $(LIB_OBJS)
|
$(LD) $(LDFLAGS) /DLL /MAP /MAPINFO:EXPORTS $(LIB_OBJS)
|
||||||
mv cryptlib.map cryptopp.map
|
mv cryptlib.map cryptopp.map
|
||||||
|
get-content somefile.txt | %{$_ -replace "cryptlib","cryptopp"}
|
||||||
|
|
||||||
cryptopp.def: cryptopp.dump
|
cryptopp.def: cryptopp.dump
|
||||||
dump2def.exe cryptopp.dump cryptopp.def
|
dump2def.exe cryptopp.dump cryptopp.def
|
||||||
|
|
|
||||||
|
|
@ -884,7 +884,7 @@ int crypto_sign_open(byte *m,word64 *mlen,const byte *sm,word64 n,const byte *pk
|
||||||
byte t[32],h[64];
|
byte t[32],h[64];
|
||||||
gf p[4],q[4];
|
gf p[4],q[4];
|
||||||
|
|
||||||
*mlen = -1;
|
*mlen = ~static_cast<word64>(0);
|
||||||
if (n < 64) return -1;
|
if (n < 64) return -1;
|
||||||
|
|
||||||
if (unpackneg(q,pk)) return -1;
|
if (unpackneg(q,pk)) return -1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue