From: Kern Sibbald Date: Mon, 1 Feb 2010 19:49:33 +0000 (+0100) Subject: Backout patch that should not be in Branch-5.0 X-Git-Tag: Release-5.0.1~137 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=744d66c805354b022a8a278e706e2aed6bd7250f;p=bacula%2Fbacula Backout patch that should not be in Branch-5.0 --- diff --git a/bacula/src/stored/butil.c b/bacula/src/stored/butil.c index ddd7cc34aa..a1a34b9a8c 100644 --- a/bacula/src/stored/butil.c +++ b/bacula/src/stored/butil.c @@ -105,8 +105,6 @@ JCR *setup_jcr(const char *name, char *dev_name, BSR *bsr, pm_strcpy(jcr->fileset_name, "Dummy.fileset.name"); jcr->fileset_md5 = get_pool_memory(PM_FNAME); pm_strcpy(jcr->fileset_md5, "Dummy.fileset.md5"); - jcr->comment = get_pool_memory(PM_MESSAGE); - *jcr->comment = '\0'; init_autochangers(); create_volume_lists(); @@ -223,10 +221,6 @@ static void my_free_jcr(JCR *jcr) free_pool_memory(jcr->fileset_md5); jcr->fileset_md5 = NULL; } - if (jcr->comment) { - free_pool_memory(jcr->comment); - jcr->comment = NULL; - } if (jcr->VolList) { free_restore_volume_list(jcr); }