﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
367	StdOutRead Error in compiled program	anonymous	Valik	"Hallo,

StdOutRead produces an error in the compiled program:
(compiled with AutoIt 3.2.13.0 Beta, WinXP)

From the help-file:

{{{
; Demonstrates StdoutRead()
#include <Constants.au3>

Local $foo = Run(@ComSpec & "" /c dir foo.bar"", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
Local $line
While 1
    $line = StdoutRead($foo)
    If @error Then ExitLoop
    MsgBox(0, ""STDOUT read:"", $line)
Wend

While 1
    $line = StderrRead($foo)
    If @error Then ExitLoop
    MsgBox(0, ""STDERR read:"", $line)
Wend

MsgBox(0, ""Debug"", ""Exiting..."")
}}}

----------------------------------------------

The compiled demo will show following message:
----------
AutoIt Error
Line -1:
Error: Unknown function name.
----------

The uncompiled demo works OK.

Many thanks to the developer-team of AutoI. 
Very good job.

"	Bug	closed	3.2.13.1	AutoIt	3.2.13.0	None	Fixed	StdOutRead	
