summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-08-03 16:52:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-08-03 16:52:23 (GMT)
commit29c72b794dbc60fc9d9df9917b2e80b6c9cbb336 (patch)
treeb87bd33c72116ad16bf559dfe01f6a019644038c /Modules
parent856e44d3bab29a13003b81c18f56e806a1e646ab (diff)
downloadcpython-29c72b794dbc60fc9d9df9917b2e80b6c9cbb336.zip
cpython-29c72b794dbc60fc9d9df9917b2e80b6c9cbb336.tar.gz
cpython-29c72b794dbc60fc9d9df9917b2e80b6c9cbb336.tar.bz2
Merged revisions 83670 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83670 | mark.dickinson | 2010-08-03 17:49:49 +0100 (Tue, 03 Aug 2010) | 3 lines Issue #8065: Fix another memory leak in readline module, from failure to free the result of a call to history_get_history_state. ........
Diffstat (limited to 'Modules')
-rw-r--r--Modules/readline.c37
1 files changed, 23 insertions, 14 deletions
diff --git a/Modules/readline.c b/Modules/readline.c
index e187129..53c6de2 100644
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -490,6 +490,25 @@ PyDoc_STRVAR(doc_get_completer,
\n\
Returns current completer function.");
+/* Private function to get current length of history. XXX It may be
+ * possible to replace this with a direct use of history_length instead,
+ * but it's not clear whether BSD's libedit keeps history_length up to date.
+ * See issue #8065.*/
+
+static int
+_py_get_history_length(void)
+{
+ HISTORY_STATE *hist_st = history_get_history_state();
+ int length = hist_st->length;
+ /* the history docs don't say so, but the address of hist_st changes each
+ time history_get_history_state is called which makes me think it's
+ freshly malloc'd memory... on the other hand, the address of the last
+ line stays the same as long as history isn't extended, so it appears to
+ be malloc'd but managed by the history package... */
+ free(hist_st);
+ return length;
+}
+
/* Exported function to get any element of history */
static PyObject *
@@ -517,10 +536,7 @@ return the current contents of history item at index.");
static PyObject *
get_current_history_length(PyObject *self, PyObject *noarg)
{
- HISTORY_STATE *hist_st;
-
- hist_st = history_get_history_state();
- return PyLong_FromLong(hist_st ? (long) hist_st->length : (long) 0);
+ return PyLong_FromLong((long)_py_get_history_length());
}
PyDoc_STRVAR(doc_get_current_history_length,
@@ -1000,20 +1016,13 @@ call_readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
n = strlen(p);
if (n > 0) {
char *line;
- HISTORY_STATE *state = history_get_history_state();
- if (state->length > 0)
- line = history_get(state->length)->line;
+ int length = _py_get_history_length();
+ if (length > 0)
+ line = history_get(length)->line;
else
line = "";
if (strcmp(p, line))
add_history(p);
- /* the history docs don't say so, but the address of state
- changes each time history_get_history_state is called
- which makes me think it's freshly malloc'd memory...
- on the other hand, the address of the last line stays the
- same as long as history isn't extended, so it appears to
- be malloc'd but managed by the history package... */
- free(state);
}
/* Copy the malloc'ed buffer into a PyMem_Malloc'ed one and
release the original. */