From 5494eeaf238dec0bc8bf40b0b7811ceab098ad70 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Sun, 4 Apr 2010 09:38:16 +0200 Subject: [PATCH] Fix bscan segfault with new comment field --- bacula/src/dird/job.c | 8 -------- bacula/src/dird/ua_run.c | 3 --- bacula/src/lib/jcr.c | 6 ++++++ 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/bacula/src/dird/job.c b/bacula/src/dird/job.c index 36308e8f38..23b5022dbe 100644 --- a/bacula/src/dird/job.c +++ b/bacula/src/dird/job.c @@ -139,10 +139,6 @@ bool setup_job(JCR *jcr) goto bail_out; } Dmsg0(150, "DB opened\n"); - if (!jcr->comment) { - jcr->comment = get_pool_memory(PM_MESSAGE); - *jcr->comment = '\0'; - } if (!jcr->fname) { jcr->fname = get_pool_memory(PM_FNAME); } @@ -1034,10 +1030,6 @@ void dird_free_jcr_pointers(JCR *jcr) bnet_close(jcr->store_bsock); jcr->store_bsock = NULL; } - if (jcr->comment) { - free_pool_memory(jcr->comment); - jcr->comment = NULL; - } if (jcr->fname) { Dmsg0(200, "Free JCR fname\n"); free_pool_memory(jcr->fname); diff --git a/bacula/src/dird/ua_run.c b/bacula/src/dird/ua_run.c index be7b5e89a0..97874c431e 100644 --- a/bacula/src/dird/ua_run.c +++ b/bacula/src/dird/ua_run.c @@ -439,9 +439,6 @@ static bool reset_restore_context(UAContext *ua, JCR *jcr, run_ctx &rc) pm_strcpy(jcr->catalog_source, _("User input")); } - if (!jcr->comment) { - jcr->comment = get_pool_memory(PM_MESSAGE); - } pm_strcpy(jcr->comment, rc.comment); if (rc.where) { diff --git a/bacula/src/lib/jcr.c b/bacula/src/lib/jcr.c index 242480f0e5..988566ecfd 100644 --- a/bacula/src/lib/jcr.c +++ b/bacula/src/lib/jcr.c @@ -358,6 +358,8 @@ JCR *new_jcr(int size, JCR_free_HANDLER *daemon_free_jcr) jcr->VolumeName[0] = 0; jcr->errmsg = get_pool_memory(PM_MESSAGE); jcr->errmsg[0] = 0; + jcr->comment = get_pool_memory(PM_FNAME); + jcr->comment[0] = 0; /* Setup some dummy values */ bstrncpy(jcr->Job, "*System*", sizeof(jcr->Job)); jcr->JobId = 0; @@ -469,6 +471,10 @@ static void free_common_jcr(JCR *jcr) free_guid_list(jcr->id_list); jcr->id_list = NULL; } + if (jcr->comment) { + free_pool_memory(jcr->comment); + jcr->comment = NULL; + } remove_jcr_from_tsd(jcr); free(jcr); } -- 2.39.5