]> git.sur5r.net Git - bacula/bacula/commitdiff
Update accurate code to use 1 byte instead of 3
authorEric Bollengier <eric@baculasystems.com>
Mon, 5 Dec 2011 10:32:10 +0000 (11:32 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:18 +0000 (14:50 +0200)
bacula/src/filed/accurate.c

index 3479cd5ecaa5cbf74253c8c73be95a77d31c819f..1c50411ceb08ef01f8fb4d013a73ccc702dd5158 100644 (file)
@@ -213,9 +213,9 @@ static bool accurate_add_file(JCR *jcr, uint32_t len,
    CurFile *item;
 
    /* we store CurFile, fname and ctime/mtime in the same chunk 
-    * we need some extra bytes to handle an empty chksum
+    * we need one extra byte to handle an empty chksum
     */
-   item = (CurFile *)jcr->file_list->hash_malloc(sizeof(CurFile)+len+3);
+   item = (CurFile *)jcr->file_list->hash_malloc(sizeof(CurFile)+len+1);
    item->seen = 0;
 
    /* TODO: see if we can optimize this part with memcpy instead of strcpy */