﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2510	Empty variable	Fulgor		"{{{

local $aa    ; this variable is empty
local $bb="""" ; this variable is empty
local $cc=1  ; this variable is not empty
local $dd=0  ; this variable is not empty, is the same like $cc

if $aa="""" Then MsgBox(0, @ScriptLineNumber , ""OK aa = is empty has len=0"" & @CRLF & ""len="" & StringLen($aa))
if $bb="""" Then MsgBox(0, @ScriptLineNumber , ""OK bb = is empty has len=0"" & @CRLF & ""len="" & StringLen($bb))
if $cc="""" Then MsgBox(0, @ScriptLineNumber , ""OK cc = is not empty has len=1"" & @CRLF & ""len="" & StringLen($cc))

if $dd="""" Then
  MsgBox(0, @ScriptLineNumber , ""ERROR dd = is not empty has len=1 "" & @CRLF & ""len="" & @CRLF & StringLen($dd))
Else
  MsgBox(0, @ScriptLineNumber , ""OK dd = is empty has len=0"" & @CRLF & ""len="" & @CRLF & StringLen($dd))
EndIf

}}}
"	Bug	closed		AutoIt	3.3.8.1	None	No Bug		
