|
Hi Kurt, Is the pointer you are passing back defined within the procedure you are calling..? Is the pointer defined as static..? If so you will have trouble because when the procedure returns the pointer will be destroyed. The OS may use up the memory allocated to it for something else at any point, but when this occurs is indeterminate. So, a quick return may well result in data still untouched (and the chain succeeding) , but if a long time elapses (like when debugging) the OS may well allocate the storage to something else and "corrupt" your data. It may be better to pass your pointer in as an input-output variable and let the procedure write data to that. This way, your data will still exist prior and after the call. This is how standard IBM APIs usually work. I believe that, even though the pointer is passed back by value you are simply setting your pointer to point to the same address as the pointer defined in your procedure (which no longer exists). HTH Larry Ducie
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.