Changeset 3952b09 in git for kernel/feResource.cc


Ignore:
Timestamp:
Sep 12, 2007, 11:33:33 AM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
02bfd57c6ce11023fbe867738ca01644328137da
Parents:
2649c5e6dbc66409526e5e323733b72f055a3dd9
Message:
*hannes: SAGE bug report: strcpy


git-svn-id: file:///usr/local/Singular/svn/trunk@10298 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/feResource.cc

    r2649c5 r3952b09  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: feResource.cc,v 1.7 2005-07-27 09:46:19 Singular Exp $ */
     4/* $Id: feResource.cc,v 1.8 2007-09-12 09:33:33 Singular Exp $ */
    55/*
    66* ABSTRACT: management of resources
     
    562562  {
    563563    if (*path == fePathSep) n_comps++;
    564     if (*path == ';')
     564    else if (*path == ';')
    565565    {
    566566      *path = fePathSep;
     
    636636  for (path=opath, i=0;i<n_comps-1;i++)
    637637  {
    638     strcpy(path, path_comps[i]);
     638    mystrcpy(path, path_comps[i]);
    639639    path += strlen(path);
    640640    *path = fePathSep;
     
    643643  if (n_comps)
    644644  {
    645     strcpy(path, path_comps[i]);
     645    mystrcpy(path, path_comps[i]);
    646646  }
    647647  else
Note: See TracChangeset for help on using the changeset viewer.