Jump to content
alank2

TMultipartFormData issue with 12.3, but not 11.3

Recommended Posts

This is C++ Builder, but it is using System.Net.Mime.pas which contains TMultipartFormData.

 

Building with 11.3 works fine no errors, but building with 12.3 will cause a crash when I try to delete a pointer to TMultipartFormData.

 

I added System.Net.Mime.pas and stepped into it and it calls:

 

image.png.0bade5372b5c43f0f5b7991b791dc6be.png

 

If I step over "FStream.Free" it crashes.  If I step into it:

 

image.thumb.png.273ed0174f02e28d2d1d853a46af1bbc.png

 

If I step over Destroy it crashes.  If I step into it, it goes into assembly:

 

image.thumb.png.15f0a6e035d4ac1750e9f9183c9f187b.png

 

I can see a lot of differences between the the 22.0 and 23.0 versions of System.Net.Mime.pas.

 

Any ideas on how to I can resolve this with 12.3?

Share this post


Link to post

Look at the crash details to get hints as to what is going on. Note you didn't post any and "crash" is very little to go on.

 

Guessing it is the CALL that crashes due to the object reference being no longer valid. Perhaps owned objects are getting freed automatically or earlier than before. Not sure which code is yours (if any) so hard to tell.

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×