1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 08:40:19 +02:00

(scm_c_make_socket_address): Pass address_size pointer

on to scm_fill_sockaddr call.
This commit is contained in:
Neil Jerram 2006-02-09 14:27:05 +00:00
parent 349b48f9a9
commit d7c6575f3f
2 changed files with 6 additions and 2 deletions

View file

@ -1238,11 +1238,10 @@ struct sockaddr *
scm_c_make_socket_address (SCM family, SCM address, SCM args,
size_t *address_size)
{
size_t size;
struct sockaddr *soka;
soka = scm_fill_sockaddr (scm_to_ushort (family), address, &args, 1,
"scm_c_make_socket_address", &size);
"scm_c_make_socket_address", address_size);
return soka;
}