--- fwsync/driver/fwsync_workers.c 2022/07/11 15:59:42 1.4 +++ fwsync/driver/fwsync_workers.c 2022/07/11 16:14:43 1.5 @@ -88,7 +88,7 @@ fwsync_state_handler(const void *arg) mtx_lock(&fws_mtx_c); - p = malloc(sizeof(struct fws_proto), M_FWSYNC, M_NOWAIT | M_ZERO); + p = malloc(sizeof(struct fws_sndpkt), M_FWSYNC, M_NOWAIT | M_ZERO); if (!p) { mtx_unlock(&fws_mtx_c); return 0; @@ -141,7 +141,7 @@ fwsync_alias_handler(const void *arg) mtx_lock(&fws_mtx_c); - p = malloc(sizeof(struct fws_proto), M_FWSYNC, M_NOWAIT | M_ZERO); + p = malloc(sizeof(struct fws_sndpkt), M_FWSYNC, M_NOWAIT | M_ZERO); if (!p) { mtx_unlock(&fws_mtx_c); return 0;