summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/readline.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/readline.c b/Modules/readline.c
index 608dd88..b2b56a2 100644
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -244,7 +244,11 @@ setup_readline()
rl_completer_word_break_characters =
" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?";
/* All nonalphanums except '.' */
- /* Initialize (allows .inputrc to override) */
+ /* Initialize (allows .inputrc to override)
+ *
+ * XXX: A bug in the readline-2.2 library causes a memory leak
+ * inside this function. Nothing we can do about it.
+ */
rl_initialize();
}