CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/07 23:33:28
Modified files:
usr.sbin/rpki-client: nca.c
Log message:
rpki-client: avoid bad free in nca_hist_load()
If the first getline() call fails with a file error, nca_hist remains
uninitialized and will be passed to nca_hist_free() in the error path.
Initialize nca_hist to NULL to avoid this.
ok claudio
