Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 105819
Collapse All | Expand All

(-)binutils/bucomm.c.old (-2 / +2 lines)
Lines 422-435 Link Here
422
#endif
422
#endif
423
      strcat (tmpname, "/");
423
      strcat (tmpname, "/");
424
      strcat (tmpname, template);
424
      strcat (tmpname, template);
425
      mktemp (tmpname);
425
      mkstemp (tmpname);
426
      *slash = c;
426
      *slash = c;
427
    }
427
    }
428
  else
428
  else
429
    {
429
    {
430
      tmpname = xmalloc (sizeof (template));
430
      tmpname = xmalloc (sizeof (template));
431
      strcpy (tmpname, template);
431
      strcpy (tmpname, template);
432
      mktemp (tmpname);
432
      mkstemp (tmpname);
433
    }
433
    }
434
  return tmpname;
434
  return tmpname;
435
}
435
}

Return to bug 105819