<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: OllyStepNSearch v0.6.0</title>
	<atom:link href="http://blog.didierstevens.com/2006/10/30/ollystepnsearch-v060/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.didierstevens.com/2006/10/30/ollystepnsearch-v060/</link>
	<description>(blog 'DidierStevens)</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:23:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: TQN</title>
		<link>http://blog.didierstevens.com/2006/10/30/ollystepnsearch-v060/#comment-215</link>
		<dc:creator><![CDATA[TQN]]></dc:creator>
		<pubDate>Mon, 06 Nov 2006 16:02:09 +0000</pubDate>
		<guid isPermaLink="false">http://didierstevens.wordpress.com/2006/10/30/ollystepnsearch-v060/#comment-215</guid>
		<description><![CDATA[Great work ! Thanks !
I found in the current version have two bugs:
- Open Help dialog, click OK, my OllyDbg exit. After some debuggin and reading your code, I found the bug is at pHelp pointer. With your code, it is a local variable, not a static or global variabl, so when we free it at IDOK, it contains a random value.
- The ESC key and IDCANCEL was not processed, so the Help Dialog not disappear.

Sorry because of I modified your code, I change your code at HlpDlgProc to:

    case WM_COMMAND:
        id = LOWORD(wp);
        if ((IDOK == id) &#124;&#124; (IDCANCEL == id))
        {
            if (pHelp != NULL)
            {
               free(pHelp);
               pHelp = NULL;
            }
            EndDialog(hwDialog, id);
        }
        break;
Best regards,]]></description>
		<content:encoded><![CDATA[<p>Great work ! Thanks !<br />
I found in the current version have two bugs:<br />
- Open Help dialog, click OK, my OllyDbg exit. After some debuggin and reading your code, I found the bug is at pHelp pointer. With your code, it is a local variable, not a static or global variabl, so when we free it at IDOK, it contains a random value.<br />
- The ESC key and IDCANCEL was not processed, so the Help Dialog not disappear.</p>
<p>Sorry because of I modified your code, I change your code at HlpDlgProc to:</p>
<p>    case WM_COMMAND:<br />
        id = LOWORD(wp);<br />
        if ((IDOK == id) || (IDCANCEL == id))<br />
        {<br />
            if (pHelp != NULL)<br />
            {<br />
               free(pHelp);<br />
               pHelp = NULL;<br />
            }<br />
            EndDialog(hwDialog, id);<br />
        }<br />
        break;<br />
Best regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2006/10/30/ollystepnsearch-v060/#comment-205</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Wed, 01 Nov 2006 17:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://didierstevens.wordpress.com/2006/10/30/ollystepnsearch-v060/#comment-205</guid>
		<description><![CDATA[That&#039;s no surprise:
1) it&#039;s written for BCC 5.5, see comments in the makefile:
   # Project file for BCC 5.5, makes OllyStepNSearch.DLL
2) you have to include the OllyDBG PDK: http://www.ollydbg.de/pdk.htm]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s no surprise:<br />
1) it&#8217;s written for BCC 5.5, see comments in the makefile:<br />
   # Project file for BCC 5.5, makes OllyStepNSearch.DLL<br />
2) you have to include the OllyDBG PDK: <a href="http://www.ollydbg.de/pdk.htm" rel="nofollow">http://www.ollydbg.de/pdk.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwon9857</title>
		<link>http://blog.didierstevens.com/2006/10/30/ollystepnsearch-v060/#comment-204</link>
		<dc:creator><![CDATA[kwon9857]]></dc:creator>
		<pubDate>Wed, 01 Nov 2006 17:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://didierstevens.wordpress.com/2006/10/30/ollystepnsearch-v060/#comment-204</guid>
		<description><![CDATA[----------------------
error occur
vc++ 6.0
---------------------

OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginreadintfromini
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginreadstringfromini
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginwriteinttoini
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginwritestringtoini
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Flash
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Followcall
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Disasm
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Getcputhreadid
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Readcommand
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Infoline
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Decodeascii
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Go
Debug/OllyStepNSearch.dll : fatal error LNK1120: 13 unresolved externals
Error executing link.exe.

OllyStepNSearch.dll - 14 error(s), 1 warning(s)]]></description>
		<content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
error occur<br />
vc++ 6.0<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginreadintfromini<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginreadstringfromini<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginwriteinttoini<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Pluginwritestringtoini<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Flash<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Followcall<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Disasm<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Getcputhreadid<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Readcommand<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Infoline<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Decodeascii<br />
OllyStepNSearch.obj : error LNK2001: unresolved external symbol _Go<br />
Debug/OllyStepNSearch.dll : fatal error LNK1120: 13 unresolved externals<br />
Error executing link.exe.</p>
<p>OllyStepNSearch.dll &#8211; 14 error(s), 1 warning(s)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

