aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorpancake@nopcode.org <unknown>2010-08-30 17:07:54 +0200
committerpancake@nopcode.org <unknown>2010-08-30 17:07:54 +0200
commit35b33ee4894c16a22a0b883ca3bf636246894955 (patch)
tree64ef7e724b1fbf8bd7a1e4cbdd1a0a8a63e5c930 /st.c
parent641dfd94e35c72134d8de0401f6f20bbc86de89e (diff)
downloadst-35b33ee4894c16a22a0b883ca3bf636246894955.tar.gz
st-35b33ee4894c16a22a0b883ca3bf636246894955.tar.bz2
fix segfault
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index d928f0d..fb1172a 100644
--- a/st.c
+++ b/st.c
@@ -1003,7 +1003,7 @@ tresize(int col, int row) {
/* resize to new height */
term.line = realloc(term.line, row * sizeof(Line));
- term.line = realloc(term.alt, row * sizeof(Line));
+ term.alt = realloc(term.alt, row * sizeof(Line));
/* resize each row to new width, zero-pad if needed */
for(i = 0; i < minrow; i++) {