commit d669b9c9017eacafe0d56b066f28378466d4456b from: Stefan Sperling date: Sat Feb 22 12:37:12 2020 UTC fix uninitialized variablen recv_gitconfig_remotes; found by sthen@ with gcc8 commit - 32dfb4a213bb5a6eaa15fc689ab72d20bcaa93fc commit + d669b9c9017eacafe0d56b066f28378466d4456b blob - 8964ec091913ce64c199534c154e3e151668e74f blob + 3c5dd60d504f22d98d780f47ffb9c985aeb36996 --- lib/privsep.c +++ lib/privsep.c @@ -1481,6 +1481,7 @@ got_privsep_recv_gitconfig_remotes(struct got_remote_r *remotes = NULL; *nremotes = 0; + iremotes.nremotes = 0; err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremotes)); if (err)