misc/pinfo/files/patch-src__utils.c has introduced the following bug: --- src/utils.c.orig Thu Mar 16 23:14:30 2006 +++ src/utils.c Fri Mar 17 16:04:57 2006 [...] - char *c = str_start; + *c = str_start; which changes an attribution to the pointer to an uninitialized pointer dereference Fix: change patch-src__utils.c:38 -+ *c = str_start; ++ c = str_start; How-To-Repeat: pinfo crashes after a while
State Changed From-To: open->closed Committed. Thanks!