Skip to content

Commit

Permalink
Pass the -lock file back via _usednames. This seems to be reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
notroj committed Sep 28, 2023
1 parent 3746d73 commit 26afe6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbm/apr_dbm_lmdb.c
Expand Up @@ -343,7 +343,7 @@ static void vt_lmdb_usednames(apr_pool_t *pool, const char *pathname,
const char **used1, const char **used2)
{
*used1 = apr_pstrdup(pool, pathname);
*used2 = NULL;
*used2 = apr_pstrcat(pool, pathname, "-lock", NULL);
}


Expand Down

0 comments on commit 26afe6b

Please sign in to comment.