Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 354351 | Differences between
and this patch

Collapse All | Expand All

(-)copt/copt.c.orig (-1 / +1 lines)
Lines 174-180 Link Here
174
  /* Delete leading white spaces */
174
  /* Delete leading white spaces */
175
  for (cp = buf; *cp && isspace(*cp); cp++) ;
175
  for (cp = buf; *cp && isspace(*cp); cp++) ;
176
  if (cp != buf && *cp)
176
  if (cp != buf && *cp)
177
	strcpy(buf, cp);
177
	memmove(buf, cp, strlen(cp) + 1);
178
178
179
  return(buf);
179
  return(buf);
180
}
180
}

Return to bug 354351