Save a few bytes in conf pool.
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1718333 13f79535-47bb-0310-9956-
ffa450edef68
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) mod_ssl: Save a few bytes in conf pool.
- trunk patch: http://svn.apache.org/r1715273
- 2.4.x patch: trunk patches work
- +1: jailletc36, ylavic, jim
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
return err;
}
- *(const char **)apr_array_push(sc->server->pks->cert_files) =
- apr_pstrdup(cmd->pool, arg);
+ *(const char **)apr_array_push(sc->server->pks->cert_files) = arg;
return NULL;
}
return err;
}
- *(const char **)apr_array_push(sc->server->pks->key_files) =
- apr_pstrdup(cmd->pool, arg);
+ *(const char **)apr_array_push(sc->server->pks->key_files) = arg;
return NULL;
}