Author: siwuzzz
Date: Sat Jul 21 15:45:02 2007
New Revision: 207
Modified:
trunk/clients/cs/src/core/atomfeedparser.cs
Log:
src/core/atomfeedparser.cs:
- AtomFeedParser.ParseBatchStatus() makes an infinite loop with
BaseFeedParser.NextChildElement(), needs a deeper investigation. NEEDS REVIEW
Modified: trunk/clients/cs/src/core/atomfeedparser.cs
==============================================================================
--- trunk/clients/cs/src/core/atomfeedparser.cs (original)
+++ trunk/clients/cs/src/core/atomfeedparser.cs Sat Jul 21 15:45:02 2007
@@ -898,9 +898,10 @@
}
}
- reader.MoveToElement();
-
- status.Value = reader.ReadString();
+ // FIX: THIS CODE SEEMS TO MAKE AN INFINITE LOOP WITH
NextChildElement()
+ //reader.MoveToElement();
+ //status.Value = reader.ReadString();
+
////////////////////////////////////////////////////////////////////////
// status can have one child element, errors
// for now disabled, as this is currently not supported on the
server
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---