Author: dreimer
Date: Thu Oct 25 23:47:32 2007
New Revision: 29884
URL:
http://svn.reactos.org/svn/reactos?rev=29884&view=rev
Log:
Hopefully the last time fun with missing "".
Modified:
trunk/tools/RosBE-Windows/Root/reladdr2line.cmd
Modified: trunk/tools/RosBE-Windows/Root/reladdr2line.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/reladdr2l…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/reladdr2line.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/reladdr2line.cmd Thu Oct 25 23:47:32 2007
@@ -41,7 +41,7 @@
:: adress and can be given directly to raddr2line. If not, add it and
:: give the result to raddr2line.
::
-if %_1% == "" (
+if "%_1%" == "" (
echo ERROR: You must specify a path/file to examine.
goto :EOC
)
@@ -70,6 +70,10 @@
)
if "%_2%" == "" (
set /p _2="Please enter the address you would like to analyze: "
+ if "%_2%" == "" (
+ echo ERROR: You must specify a address to analyze.
+ goto :EOC
+ )
)
goto :EOF