Add ETW support for out type and tags

This commit is contained in:
Kevin Parsons
2018-12-20 01:28:55 -08:00
parent 824a366a22
commit 82ad381699
4 changed files with 130 additions and 15 deletions
+1 -1
View File
@@ -17,6 +17,6 @@ func NewEventData() *EventData {
// AddString appends the data for a string to the end of the buffer.
func (ed *EventData) AddString(data string) {
ed.buffer.Write([]byte(data))
ed.buffer.WriteString(data)
ed.buffer.WriteByte(0)
}