mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
fix segfault
This commit is contained in:
parent
12c25bcea9
commit
e1ce89f267
2
st.c
2
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++) {
|
||||
|
Loading…
Reference in New Issue
Block a user