diff options
| author | Paul Eggert | 2011-04-26 00:12:16 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-26 00:12:16 -0700 |
| commit | 080e5a8d90830c0d5c9d365e429f748e938a9485 (patch) | |
| tree | 0ae2c4ffc8f01c1b22411e0785ce97ad569fe28b /src/ChangeLog | |
| parent | 671875dac181f7f1337f21d013a9c3d5f235ddf2 (diff) | |
| download | emacs-080e5a8d90830c0d5c9d365e429f748e938a9485.tar.gz emacs-080e5a8d90830c0d5c9d365e429f748e938a9485.zip | |
* gnutls.c (emacs_gnutls_handshake): Don't return a garbage value.
Expect the caller to check whether GNUTLS_STAGE_HANDSHAKE_CANDO <=
proc->gnutls_initstage, if the check is needed. The check isn't
needed for one caller, Fgnutls_boot.
(emacs_gnutls_read): Do that check. This is the other caller.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6614375a7c6..8bdc3861f9b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2011-04-26 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-04-26 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * gnutls.c (emacs_gnutls_handshake): Don't return a garbage value. | ||
| 4 | Expect the caller to check whether GNUTLS_STAGE_HANDSHAKE_CANDO <= | ||
| 5 | proc->gnutls_initstage, if the check is needed. The check isn't | ||
| 6 | needed for one caller, Fgnutls_boot. | ||
| 7 | (emacs_gnutls_read): Do that check. This is the other caller. | ||
| 8 | |||
| 3 | lisp.h: Fix a problem with aliasing and vector headers. | 9 | lisp.h: Fix a problem with aliasing and vector headers. |
| 4 | GCC 4.6.0 optimizes based on type-based alias analysis. For | 10 | GCC 4.6.0 optimizes based on type-based alias analysis. For |
| 5 | example, if b is of type struct buffer * and v of type struct | 11 | example, if b is of type struct buffer * and v of type struct |