diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-05-16 12:30:19 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-05-16 12:30:19 +0200 |
commit | 68025527874d2d98d4d9f85ddea84db577307743 (patch) | |
tree | 73f462ee86593d734262820e9277350299e65aa8 | |
parent | 3bc15f0e55e9041319865b8b63d5864ef5c95d0b (diff) | |
download | weechat-68025527874d2d98d4d9f85ddea84db577307743.zip |
guile: fix crash on ARM when loading guile plugin (bug #36479)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/plugins/scripts/guile/weechat-guile-api.c | 4 |
2 files changed, 2 insertions, 5 deletions
@@ -1,7 +1,7 @@ WeeChat ChangeLog ================= Sébastien Helleu <flashcode@flashtux.org> -v0.3.8-rc1, 2012-05-15 +v0.3.8-rc1, 2012-05-16 Version 0.3.8 (under dev!) @@ -32,6 +32,7 @@ Version 0.3.8 (under dev!) * api: add list "gui_buffer_last_displayed" in hdata "buffer" * scripts: fix type of argument "rc" in callback of hook_process (from string to integer) +* guile: fix crash on ARM when loading guile plugin (bug #36479) * guile: add missing function "hook_process_hashtable" in API * irc: update channel modes by using chanmodes from message 005 (do not send extra command "MODES" to server), fix parsing of modes (bug #36215) diff --git a/src/plugins/scripts/guile/weechat-guile-api.c b/src/plugins/scripts/guile/weechat-guile-api.c index 4e5084567..95b309b08 100644 --- a/src/plugins/scripts/guile/weechat-guile-api.c +++ b/src/plugins/scripts/guile/weechat-guile-api.c @@ -5245,19 +5245,15 @@ void weechat_guile_api_module_init (void *data) { scm_t_bits port_type; - scm_t_port *pt; /* make C compiler happy */ (void) data; - /* Setting up the xchat output window as our default output ports */ port_type = scm_make_port_type ("weechat_stdout", &weechat_guile_port_fill_input, &weechat_guile_port_write); guile_port = scm_new_port_table_entry (port_type); SCM_SET_CELL_TYPE (guile_port, port_type | SCM_OPN | SCM_WRTNG); - pt = SCM_PTAB_ENTRY (guile_port); - pt->rw_random = 0; scm_set_current_output_port (guile_port); scm_set_current_error_port (guile_port); |