bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ 100486 ] faulty stringByStandardizingPath (mingw)


From: nobody
Subject: [ 100486 ] faulty stringByStandardizingPath (mingw)
Date: Tue, 26 Feb 2002 10:05:56 -0500

Support Request #100486, was updated on 2002-Feb-26 16:05
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100486&group_id=99

Category: Foundation
Status: Open
Priority: 5
Summary: faulty stringByStandardizingPath (mingw)

By: mscheibler
Date: 2002-Feb-26 16:05

Message:
Logged In: YES 
user_id=5624
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

Paths like

Z:\SomeDir\SomeOtherDir\../../Bundles/SomeBundle.bundle

are transformed to

../Bundles/SomeBundle.bundle

Here is the fix (it is from an older version, but the 
latest CVS snapshot 
doesn't have this bug fixed, too):

#if defined(__MINGW__)
  /* Condense /../' */
            }
          [s deleteCharactersInRange: r];
        }
      else
        r.location++;
      if ((r.length = [s length]) > r.location)
        r.length -= r.location;
      else
        break;
    }

  return s;
#else


Michael Scheibler

----------------------------------------------------------------------
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100486&group_id=99



reply via email to

[Prev in Thread] Current Thread [Next in Thread]