| Index: runtime/bin/process_patch.dart
|
| diff --git a/runtime/bin/process_patch.dart b/runtime/bin/process_patch.dart
|
| index 441e75b973cc332ff1c81938966af00c44e39570..e0e8fc6e237d21c632eb4158506f848ec3c7d11d 100644
|
| --- a/runtime/bin/process_patch.dart
|
| +++ b/runtime/bin/process_patch.dart
|
| @@ -323,7 +323,7 @@ class _ProcessImpl extends NativeFieldWrapperClass1 implements Process {
|
| _exitHandler._nativeSocket);
|
|
|
| getOutput(output, encoding) {
|
| - if (stderrEncoding == null) return output;
|
| + if (encoding == null) return output;
|
| return encoding.decode(output);
|
| }
|
|
|
|
|