]> git.sur5r.net Git - bacula/bacula/commitdiff
Backout patch that should not be in Branch-5.0
authorKern Sibbald <kern@sibbald.com>
Mon, 1 Feb 2010 19:49:33 +0000 (20:49 +0100)
committerKern Sibbald <kern@sibbald.com>
Mon, 1 Feb 2010 19:49:33 +0000 (20:49 +0100)
bacula/src/stored/butil.c

index ddd7cc34aa53d5a1278ff50b53281dbc8c30b78f..a1a34b9a8cf59353b9f449bfe6aa149880653766 100644 (file)
@@ -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);
    }