Bugfixes.

* src/incremen.c (dumpdir_create0): Eliminate gcc warning.
(attach_directory): Bugfix - add missing return statement.
* THANKS: Add Enric Hernandez
This commit is contained in:
Sergey Poznyakoff
2008-09-07 08:49:10 +00:00
parent db83069aea
commit 85c7909497
3 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2008-09-07 Sergey Poznyakoff <gray@gnu.org.ua>
* src/incremen.c (dumpdir_create0): Eliminate gcc warning.
(attach_directory): Bugfix - add missing return statement.
* THANKS: Add Enric Hernandez
2008-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
* src/incremen.c (struct directory): New member `next'. Change

1
THANKS
View File

@@ -152,6 +152,7 @@ Eduardo V. de Rivas eddie@asterion.com
Edward Welbourne eddy@gen.cam.ac.uk
Elmar Heeb heeb@itp.ethz.ch
Elmer Fittery elmerf@ptw.com
Enric Hernandez ehernandez@notariado.org
Eric Backus ericb@lsid.hp.com
Eric Benson eb@amazon.com
Eric Blake ebb9@byu.net

View File

@@ -81,13 +81,14 @@ dumpdir_create0 (const char *contents, const char *cmask)
{
struct dumpdir *dump;
size_t i, total, ctsize, len;
const char *p;
char *p;
const char *q;
for (i = 0, total = 0, ctsize = 1, p = contents; *p; total++, p += len)
for (i = 0, total = 0, ctsize = 1, q = contents; *q; total++, q += len)
{
len = strlen (p) + 1;
len = strlen (q) + 1;
ctsize += len;
if (!cmask || strchr (cmask, *p))
if (!cmask || strchr (cmask, *q))
i++;
}
dump = xmalloc (sizeof (*dump) + ctsize);
@@ -279,6 +280,7 @@ attach_directory (const char *name)
else
dirhead = dir;
dirtail = dir;
return dir;
}