Skip to content

Commit

Permalink
Mirror change proposed in connamara#448
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwilner committed Sep 18, 2018
1 parent e08c956 commit 4f196fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickFIXn/Message/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static StringField ExtractField(string msgstr, ref int pos, DataDictionar
int tagend = msgstr.IndexOf('=', pos);
int tag = Convert.ToInt32(msgstr.Substring(pos, tagend - pos));
pos = tagend + 1;
int fieldvalend = msgstr.IndexOf('\u0001', pos);
int fieldvalend = msgstr.IndexOf((char)1, pos);
StringField field = new StringField(tag, msgstr.Substring(pos, fieldvalend - pos));

/*
Expand Down

0 comments on commit 4f196fa

Please sign in to comment.