<?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/"
		>
<channel>
	<title>Comments on: CentOS/RHEL x86_64 + VMWare: Use of uninitialized value in string</title>
	<atom:link href="http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/</link>
	<description>Words of wisdom from a server administrator</description>
	<lastBuildDate>Mon, 21 May 2012 12:07:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Andy</title>
		<link>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/#comment-15632</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 10 Dec 2009 14:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=366#comment-15632</guid>
		<description>Thanks BigJoe.

Watch out though, folks.  The text above includes those pesky &#039;smart double quotes&#039;, not real double-quotes, so you&#039;ll need to replace the incorrect double-quotes with correct ones when you paste this snippet in to the Perl module.</description>
		<content:encoded><![CDATA[<p>Thanks BigJoe.</p>
<p>Watch out though, folks.  The text above includes those pesky 'smart double quotes', not real double-quotes, so you'll need to replace the incorrect double-quotes with correct ones when you paste this snippet in to the Perl module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BigJoe</title>
		<link>http://rackerhacker.com/2008/09/03/centosrhel-x86_64-vmware-use-of-uninitialized-value-in-string/#comment-2597</link>
		<dc:creator>BigJoe</dc:creator>
		<pubDate>Wed, 03 Sep 2008 18:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=366#comment-2597</guid>
		<description>This assumption is probably true that this won&#039;t cause any errors.  But after patching and upgrading this could come up to haunt you.  This is essentially dying because one or both of the two values in evaluation are not defined.  A potentially safer way to fix this is to add the following can make a minor change:

$VERSION = &quot;0&quot; if(! defined($VERSION));
my $APIVERSION = version();
$APIVERSION = &quot;0&quot; if(! defined($APIVERSION));

die &quot;Perl API Version does not match dynamic library version.&quot; 
  unless ($APIVERSION eq $VERSION);

Sorry for my randomly nuts rant but this error is one of my biggest pet peeves from maintaining and troubleshooting existing Perl code.  It bugs me even more that code like this is distributed and generates all these errors making administrators think that all Perl code is buggy or unstable.</description>
		<content:encoded><![CDATA[<p>This assumption is probably true that this won't cause any errors.  But after patching and upgrading this could come up to haunt you.  This is essentially dying because one or both of the two values in evaluation are not defined.  A potentially safer way to fix this is to add the following can make a minor change:</p>
<p>$VERSION = "0" if(! defined($VERSION));<br />
my $APIVERSION = version();<br />
$APIVERSION = "0" if(! defined($APIVERSION));</p>
<p>die "Perl API Version does not match dynamic library version."<br />
  unless ($APIVERSION eq $VERSION);</p>
<p>Sorry for my randomly nuts rant but this error is one of my biggest pet peeves from maintaining and troubleshooting existing Perl code.  It bugs me even more that code like this is distributed and generates all these errors making administrators think that all Perl code is buggy or unstable.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

