mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
On the alpha, sizeof(char*) != sizeof(int) which was assumed in
term_init(). This is the cause of /usr/bin/ftp faulting on the alpha. Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
This commit is contained in:
parent
5c5926277e
commit
3e0f4b28d6
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ term_init(el)
|
|||
el->el_term.t_str = (char **) el_malloc(T_str * sizeof(char*));
|
||||
(void) memset(el->el_term.t_str, 0, T_str * sizeof(char*));
|
||||
el->el_term.t_val = (int *) el_malloc(T_val * sizeof(int));
|
||||
(void) memset(el->el_term.t_val, 0, T_val * sizeof(char*));
|
||||
(void) memset(el->el_term.t_val, 0, T_val * sizeof(int));
|
||||
term_outfile = el->el_outfile;
|
||||
(void) term_set(el, NULL);
|
||||
term_init_arrow(el);
|
||||
|
|
|
|||
Loading…
Reference in a new issue