CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2022/01/21 13:09:42
Modified files:
sysutils/gkrellm/plugins/reminder: Makefile
sysutils/gkrellm/plugins/reminder/patches: patch-reminder_c
Log message:
fix crash in gkrellmreminder
The reminder plugin uses fscanf with %d into a time_t to read the dates,
which corrupts them. Switch to fscanf with %lld to a temp variable
before assigning it back to time_t.
Issue reported and diff tested by John McCue (jmccue AT jmcunx DOT com),
thanks!
input and ok tb@