diff options
Diffstat (limited to 'xlators/features/changelog/lib')
| -rw-r--r-- | xlators/features/changelog/lib/src/gf-changelog-journal-handler.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/features/changelog/lib/src/gf-changelog-journal-handler.c b/xlators/features/changelog/lib/src/gf-changelog-journal-handler.c index 6ee6f9f074f..3cb0eef7ba6 100644 --- a/xlators/features/changelog/lib/src/gf-changelog-journal-handler.c +++ b/xlators/features/changelog/lib/src/gf-changelog-journal-handler.c @@ -876,7 +876,8 @@ gf_changelog_init_history (xlator_t *this,                  goto dealloc_hist;          } -        (void) strncpy (jnl->hist_jnl->jnl_brickpath, brick_path, PATH_MAX); +        (void) strncpy (jnl->hist_jnl->jnl_brickpath, brick_path, PATH_MAX-1); +        jnl->hist_jnl->jnl_brickpath[PATH_MAX-1] = 0;          for (i = 0; i < 256; i++) {                  jnl->hist_jnl->rfc3986[i] =  | 
