]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/backup.c
Add new files
[bacula/bacula] / bacula / src / dird / backup.c
index e9151ec85bdbd6e80728a5ec4245b66308981454..a96206f4ce22f08eca63aa26db5e941469bf80e5 100644 (file)
@@ -232,8 +232,6 @@ int do_backup(JCR *jcr)
       case L_DIFFERENTIAL:
       case L_INCREMENTAL:
          bnet_fsend(fd, levelcmd, "since ", jcr->stime, 0);
-        free_pool_memory(jcr->stime);
-        jcr->stime = NULL;
         break;
       case L_SINCE:
       default:
@@ -258,13 +256,8 @@ int do_backup(JCR *jcr)
    return 1;
 
 bail_out:
-   if (jcr->stime) {
-      free_pool_memory(jcr->stime);
-      jcr->stime = NULL;
-   }
    backup_cleanup(jcr, JS_ErrorTerminated, since, &fsr);
    return 0;
-
 }
 
 /*