Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
The past 6 months I've been struggling with a weird bug I had in pVoice. The application itself ran fine, but when the application closed, 99% of the time I got an Access Violation in Wx::Bitmap, which tried to free the memory used by some Bitmap I had obviously created...or so I thought

Yesterday evening I used Data::Dumper to dump the datafile I use for pVoice, which showed me lots of entries like this:
[ 'wassen', 'wassen', '1', 'C:\\Mijn documenten\\PCS\\Verbs\\Gr +ooming\\wash 1.jpg', bless( do{\(my $o = 12451544)}, 'Wx: +:Bitmap' ) ],
I had seen entries like that before and never really worried about it. Indeed, once I tried to save the actual Bitmap in the Storable file, which didn't work, but I didn't care about having that entry in my datafile. I didn't use it, did I?

But yesterday it struck me. Was it just a coincidence that my Access Violations happened in Wx::Bitmap and that I had those lines in my datafile? Obviously not. Removing all references to those Wx::Bitmap objects, and saving the datastructure again solved the problem. So what has been going on here?

My theory is this: the code references are only valid for the time the application runs. When the datastructure is read in another run, the data the Wx::Bitmap entry refers to doesn't exist, but when the application closes, it will still try to free the memory, which is obviously not in use by my application, so an Access Violation is generated.

Moral of the story: never use Storable to save objects that aren't pure Perl, but consist of XS code.


Jouke Visser
Speaking at the 2004 O'Reilly Open Source Convention about pVoice

In reply to Never use Storable to save XS objects by Jouke

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 browsing the Monastery: (4)
As of 2024-04-18 03:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found