You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks @shuangxiangkan, I think this is the right approach for statics. Two concerns:
The "ALLOC_STACK_RET" does not seem to be gone everywhere. In particular, the following functions still have it applied: __errno_location, getpwuid, localeconv, localtime, and setlocale. As far as I know, all of those return pointers to static storage as well? Based on the current list of functions in the ExtAPI, I'm not aware of any that would need the ALLOC_STACK_RET annotation, what do you think?
Thanks for your feedback! This PR is to check if the current solution is reasonable, and I’ll keep optimizing it. Regarding your two concerns:
Some APIs still retain the "ALLOC_STACK_RET" annotation because removing them caused some test cases to fail. I’ll carefully review these APIs to confirm if they return pointers to static storage and fix the failing test cases.
I agree that some APIs may return the same underlying static objects. I’ll thoroughly check to identify which APIs share static objects. If you have time, I’d appreciate it if you could double-check to ensure all APIs returning static variables are handled correctly.
Thanks @shuangxiangkan, I think this is the right approach for statics. Two concerns:
The "ALLOC_STACK_RET" does not seem to be gone everywhere. In particular, the following functions still have it applied: __errno_location, getpwuid, localeconv, localtime, and setlocale. As far as I know, all of those return pointers to static storage as well? Based on the current list of functions in the ExtAPI, I'm not aware of any that would need the ALLOC_STACK_RET annotation, what do you think?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.