Specify UTF-8 encoding for all Java agent commands
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondDisableEventCommand.java
index 4a19c22ea91d3e6743119737dc828a4672b434e9..43ff4026346fa62a8a18ef5d402eda6272d17c8f 100644 (file)
@@ -39,7 +39,7 @@ class SessiondDisableEventCommand extends SessiondCommand {
                }
                ByteBuffer buf = ByteBuffer.wrap(data);
                buf.order(ByteOrder.BIG_ENDIAN);
-               eventName = new String(data).trim();
+               eventName = new String(data, SESSIOND_PROTOCOL_CHARSET).trim();
        }
 
        @Override
This page took 0.024204 seconds and 4 git commands to generate.