Revert "[server] access_folder is guaranteed to be NULL terminated"

This reverts commit 24f57f36a742458b204635cd3dbf8003fa3a3eb8.
This commit is contained in:
Michael Rash 2015-12-17 21:27:13 -05:00
parent 24f57f36a7
commit 3388d85073

View File

@ -1349,6 +1349,7 @@ acc_data_is_valid(fko_srv_options_t *opts,
int
parse_access_folder(fko_srv_options_t *opts, char *access_folder, int *depth)
{
char *ndx;
char *extension;
DIR *dir_ptr;
@ -1361,8 +1362,11 @@ parse_access_folder(fko_srv_options_t *opts, char *access_folder, int *depth)
acc_stanza_init(opts);
}
/* access_folder is guaranteed to be NULL terminated
*/
if((ndx = strrchr(access_folder, '/')) != NULL)
{
if (strlen(ndx) == 1)
*ndx = '\0';
}
dir_ptr = opendir(access_folder);
//grab the file names in the directory and loop through them