- Fix runtime crash on 64-bit archs with jemalloc

PR:		ports/91812
Submitted by:	keramida
Approved by:	vanilla (vacation blanket)
This commit is contained in:
Pav Lucistnik 2006-01-15 09:00:54 +00:00
parent 09606c5f79
commit 1068fca2cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=153546
2 changed files with 11 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= irssi
PORTVERSION= 0.8.10
PORTREVISION= 1
CATEGORIES?= irc
MASTER_SITES= http://mirror.irssi.org/

View file

@ -0,0 +1,10 @@
--- src/fe-text/gui-entry.h.orig Sun Jan 15 05:08:57 2006
+++ src/fe-text/gui-entry.h Sun Jan 15 05:09:04 2006
@@ -34,6 +34,7 @@
void gui_entry_set_text(GUI_ENTRY_REC *entry, const char *str);
char *gui_entry_get_text(GUI_ENTRY_REC *entry);
+char *gui_entry_get_text_and_pos(GUI_ENTRY_REC *entry, int *pos);
void gui_entry_insert_text(GUI_ENTRY_REC *entry, const char *str);
void gui_entry_insert_char(GUI_ENTRY_REC *entry, unichar chr);