diff options
| -rw-r--r-- | gpgme/ChangeLog | 3 | ||||
| -rw-r--r-- | gpgme/conversion.c | 1 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 43561a46..bd2d4a5a 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,5 +1,8 @@  2003-05-26  Marcus Brinkmann  <[email protected]> +	* conversion.c (_gpgme_decode_c_string): Add missing break +	statement. +  	* recipient.c (gpgme_recipients_add_name_with_validity): Add one  	to buffer to allocate. diff --git a/gpgme/conversion.c b/gpgme/conversion.c index 3706a57b..117df528 100644 --- a/gpgme/conversion.c +++ b/gpgme/conversion.c @@ -144,6 +144,7 @@ _gpgme_decode_c_string (const char *src, char **destp, int len)  		src += 4;  	      }  	  } +	  break;  	default:  	  { | 
