Re: [Announce] GnuPG 1.9.17 (S/MIME and gpg-agent) released
Werner Koch <[email protected]> Wed, 29 Jun 2005 15:49:46 +0200
| Newsgroups | gmane.comp.encryption.gpg.gpa.devel |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 29 Jun 2005 13:54:04 +0200, Michael Nottebrock said: > gcry_mpi_t sig_value = NULL; > - unsigned char *sig_blob = NULL;; > + unsigned char *sig_blob = NULL; This is indeed an error. Mixing declaration and statements (the empty one here) is not allowed by C-89. Anyone knows whether gcc 4.0 has an option to detect this again? Thanks, Werner