chiark / gitweb /
utmp: no need to zero a struct before overwriting it with memcpy
[elogind.git] / src / utmp-wtmp.c
index e7b2e3cd9f1828c7a514e41efe494c09650c53ab..98c1a25e84d1ac6d5c60c132e576be1a2016e1df 100644 (file)
@@ -242,8 +242,6 @@ int utmp_put_dead_process(const char *id, pid_t pid, int code, int status) {
         if (found->ut_pid != pid)
                 return 0;
 
-        zero(store);
-
         memcpy(&store, &lookup, sizeof(store));
         store.ut_type = DEAD_PROCESS;
         store.ut_exit.e_termination = code;