From 68025527874d2d98d4d9f85ddea84db577307743 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Wed, 16 May 2012 12:30:19 +0200 Subject: guile: fix crash on ARM when loading guile plugin (bug #36479) --- src/plugins/scripts/guile/weechat-guile-api.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/plugins/scripts') 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); -- cgit v1.2.3