1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-04-17 15:44:34 +02:00

* plaintext.c (ask_for_detached_datafile, hash_datafiles): Fix compiler

warnings.
This commit is contained in:
David Shaw 2003-04-22 04:23:31 +00:00
parent 338be86caf
commit 0727326e4e
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,8 @@
fingerprint when checking a signature with --always-trust enabled. fingerprint when checking a signature with --always-trust enabled.
* filter.h (progress_filter_context_t), progress.c * filter.h (progress_filter_context_t), progress.c
(handle_progress): Fix compiler warnings. Make "what" constant. (handle_progress), plaintext.c (ask_for_detached_datafile,
hash_datafiles): Fix compiler warnings. Make "what" constant.
* build-packet.c (do_plaintext): Do not create invalid literal * build-packet.c (do_plaintext): Do not create invalid literal
packets with >255-byte names. packets with >255-byte names.

View File

@ -371,7 +371,7 @@ ask_for_detached_datafile( MD_HANDLE md, MD_HANDLE md2,
do_hash( md, md2, fp, textmode ); do_hash( md, md2, fp, textmode );
iobuf_close(fp); iobuf_close(fp);
if (dealloc_pfx_name) if (dealloc_pfx_name)
m_free (pfx.what); m_free ((void *)pfx.what);
leave: leave:
m_free(answer); m_free(answer);
@ -398,7 +398,7 @@ hash_datafiles( MD_HANDLE md, MD_HANDLE md2, STRLIST files,
if( fp ) { if( fp ) {
do_hash( md, md2, fp, textmode ); do_hash( md, md2, fp, textmode );
iobuf_close(fp); iobuf_close(fp);
m_free (pfx.what); m_free ((void *)pfx.what);
return 0; return 0;
} }
log_error (_("no signed data\n")); log_error (_("no signed data\n"));