diff options
author | Zhaozhong Ni <nzz@google.com> | 2018-05-08 17:23:06 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-05-08 17:23:50 -0700 |
commit | ad278d69447ddca9c6923e5e830c12f1329438b9 (patch) | |
tree | 64de050fb8971a2e9f731e1b15b85c45b5597659 /pkg/state/encode.go | |
parent | 10a2cfc6a9216cb32e3a930016178d3c15ccc383 (diff) |
state: serialize string as bytes instead of protobuf string.
Protobuf strings have to be UTF-8 encoded or 7-bit ASCII.
PiperOrigin-RevId: 195902557
Change-Id: I9800afd47ecfa6615e28a2cce7f2532f04f10763
Diffstat (limited to 'pkg/state/encode.go')
-rw-r--r-- | pkg/state/encode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/state/encode.go b/pkg/state/encode.go index eb6527afc..1cec14f24 100644 --- a/pkg/state/encode.go +++ b/pkg/state/encode.go @@ -308,7 +308,7 @@ func (es *encodeState) encodeObject(obj reflect.Value, mapAsValue bool, format s }}} } case reflect.String: - object = &pb.Object{Value: &pb.Object_StringValue{obj.String()}} + object = &pb.Object{Value: &pb.Object_StringValue{[]byte(obj.String())}} case reflect.Ptr: if obj.IsNil() { // Handled specially in decode; store as a nil value. |