From e1fc91c4288459d0cc5eef3e2108f429ced4fc86 Mon Sep 17 00:00:00 2001 From: Zbigniew Chyla Date: Sat, 2 May 2015 01:35:33 +0200 Subject: Copy structs using assignment, not memcpy(). --- libgpsd_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgpsd_core.c') diff --git a/libgpsd_core.c b/libgpsd_core.c index c6ec4a22..a241e559 100644 --- a/libgpsd_core.c +++ b/libgpsd_core.c @@ -985,7 +985,7 @@ static void gpsd_error_model(struct gps_device_t *session, /* save old fix for later error computations */ if (fix->mode >= MODE_2D) - (void)memcpy(oldfix, fix, sizeof(struct gps_fix_t)); + *oldfix = *fix; } #endif /* NOFLOATS_ENABLE */ @@ -999,7 +999,7 @@ int gpsd_await_data(fd_set *rfds, int status; FD_ZERO(efds); - (void)memcpy((char *)rfds, (char *)all_fds, sizeof(fd_set)); + *rfds = *all_fds; gpsd_log(errout, LOG_RAW + 2, "select waits\n"); /* * Poll for user commands or GPS data. The timeout doesn't -- cgit v1.2.1