aboutsummaryrefslogtreecommitdiff
path: root/src/pj_open_lib.c
diff options
context:
space:
mode:
authorAaron Puchert <aaron.puchert@sap.com>2017-11-17 17:46:34 +0100
committerAaron Puchert <aaronpuchert@alice-dsl.net>2017-12-17 23:34:40 +0100
commita07501a165e6f2521c9aa13fa63fab33cf67d876 (patch)
tree846a2df69948cb6d4927c0c8d5b953786df5cb04 /src/pj_open_lib.c
parent95f8e749e712218ca49e4025fe6ab59ddf991c60 (diff)
downloadPROJ-a07501a165e6f2521c9aa13fa63fab33cf67d876.tar.gz
PROJ-a07501a165e6f2521c9aa13fa63fab33cf67d876.zip
Declare non-local variables as const where possible
Having non-const variables of static lifetime or even global scope is usually a bad idea. These variables are inherently constants, and this should be enforced. This required marking some functions as not modifying input parameters and marking some pointers as pointers to const. One advantage is that the compiler usually puts const static variables in a read-only code segment, so they can't be modified physically. This can be verified with `nm` (on POSIX systems). To avoid changes to the public API, functions returning non-const pointers to data tables were left intact, but the returned data may not be modified. Internally we prefer using the proj_list_* functions over the pj_get_*_ref functions, because the former return const pointers.
Diffstat (limited to 'src/pj_open_lib.c')
-rw-r--r--src/pj_open_lib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pj_open_lib.c b/src/pj_open_lib.c
index 08532beb..4eaefba1 100644
--- a/src/pj_open_lib.c
+++ b/src/pj_open_lib.c
@@ -38,7 +38,7 @@
static const char *(*pj_finder)(const char *) = NULL;
static int path_count = 0;
static char **search_path = NULL;
-static char * proj_lib_name =
+static const char * proj_lib_name =
#ifdef PROJ_LIB
PROJ_LIB;
#else
@@ -93,8 +93,8 @@ void pj_set_searchpath ( int count, const char **path )
/* just a couple of helper functions that lets other functions
access the otherwise private search path */
-const char **proj_get_searchpath(void) {
- return (const char **)search_path;
+const char * const *proj_get_searchpath(void) {
+ return (const char * const *)search_path;
}
int proj_get_path_count(void) {