mirror of
https://github.com/weechat/weechat.git
synced 2026-06-28 22:06:38 +02:00
guile: fix crash on ARM when loading guile plugin (bug #36479)
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user