added GC_PROTECT
This commit is contained in:
parent
f81441cf2a
commit
abc5901c5d
|
@ -58,8 +58,10 @@ int scheme_tcgetattrB(int fd, char *control_chars, s48_value scmvec)
|
|||
{
|
||||
struct termios t;
|
||||
int result = tcgetattr(fd, &t);
|
||||
S48_DECLARE_GC_PROTECT(1);
|
||||
S48_GC_PROTECT_1(scmvec);
|
||||
// JMG int *ivec = ADDRESS_AFTER_HEADER(scmvec, int);
|
||||
|
||||
|
||||
if (result != -1) {
|
||||
memcpy(control_chars, t.c_cc, NCCS);
|
||||
S48_VECTOR_SET(scmvec, 0, s48_enter_integer(t.c_iflag));
|
||||
|
@ -69,7 +71,7 @@ int scheme_tcgetattrB(int fd, char *control_chars, s48_value scmvec)
|
|||
S48_VECTOR_SET(scmvec, 4, s48_enter_fixnum(cfgetispeed(&t)));
|
||||
S48_VECTOR_SET(scmvec, 5, s48_enter_fixnum(cfgetospeed(&t)));
|
||||
}
|
||||
|
||||
S48_GC_UNPROTECT();
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue