diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-13 19:27:24 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2002-04-13 19:27:24 +0000 |
commit | 73c582bf2f871b1a7b99d3ba6eca9895e34e3517 (patch) | |
tree | 7d9f390bd49daaabbe7eb2594745d3e71908558c /include/arch/win32 | |
parent | e16178bd76bc9a49b1426246360aa8bd865b3b8a (diff) | |
download | libapr-73c582bf2f871b1a7b99d3ba6eca9895e34e3517.tar.gz |
Correct const'ification of apr_app_initialize and internal related
functions, as pointed out by GStein. Also fix a -very- significant
bug in win32/apr_app_initialize() where we misassigned the new env
memory to env rather than *env as required.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63260 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/win32')
-rw-r--r-- | include/arch/win32/misc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/arch/win32/misc.h b/include/arch/win32/misc.h index feb72c6bf..072dad16b 100644 --- a/include/arch/win32/misc.h +++ b/include/arch/win32/misc.h @@ -103,7 +103,8 @@ struct apr_other_child_rec_t { */ extern int APR_DECLARE_DATA apr_app_init_complete; -int apr_wastrtoastr(char ***retarr, const wchar_t **arr, int args); +int apr_wastrtoastr(char const * const * *retarr, + wchar_t const * const *arr, int args); /* Platform specific designation of run time os version. * Gaps allow for specific service pack levels that |