Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I'm a bit confused as to why I am getting the above error in a subroutine. My sub starts out with...

1427 sub foo { 1428 my $args = shift; 1429 1430 if ($args->{err}) { 1431 print "There is a problem : $args->{err}\n"; 1432 } 1433 1434 if ($args->{src} eq "commit") { 1435 print "I've got my sources!\n"; 1436 print "I'm committed!\n" 1437 if (!$args->{err}); 1438 } 1439 }

The curious thing for me is that when I run my script, I get

Use of uninitialized value in string eq at ./pancho-ini line 1430. I've got my sources! I'm committed!

I'm just not understanding why one test against $args->{err} seems to think it is a valid value, while the other, does not. I had thought that defined or exists would be the missing key for line 1430, but when I add either of them, line 1430 seems to prove 'true'

Thanks! -c


In reply to Use of uninitialized value in string by c

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-04-25 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found