After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 418845 - new functions should be static
new functions should be static
Status: RESOLVED NOTABUG
Product: libart
Classification: Deprecated
Component: Other
CVS HEAD
Other opensolaris
: Normal normal
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-03-16 04:18 UTC by Brian Cameron
Modified: 2007-03-16 09:16 UTC
See Also:
GNOME target: ---
GNOME version: 2.17/2.18



Description Brian Cameron 2007-03-16 04:18:17 UTC
I notice that libart_lgpl_2.so.2.3.19 exports 3 new functions, which I think really should be defined as static, and not exported:

art_alloc
art_free
art_realloc

Could these function be made static, or are they really intended for outside use?
Comment 1 Alexander Larsson 2007-03-16 09:16:41 UTC
They are intended for outside use. art_free is how you free something that was allocated by libart. Its used by external code already.