Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3899

Show
Ignore:
Timestamp:
08/20/08 14:20:43 (4 months ago)
Author:
kris
Message:

re-added eof check

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/xml/PullParser.d

    r3828 r3899  
    127127                   { 
    128128                   auto q = p; 
    129                    while (*++p != '<') {} 
     129                   if (p < e) 
     130                       while (*++p != '<') {} 
    130131 
    131132                   if (p < e)