1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

Return a (void *)0 instead of NULL in readdir64() wrapper.

(This used to be commit d78224a7d27097fa00d9e2a7b02efd7383d833ff)
This commit is contained in:
Tim Potter 1999-06-13 04:27:57 +00:00
parent 74e19e5b81
commit 0132160229

View File

@ -687,7 +687,7 @@
static double xx[70];
void *d;
d = (void *)readdir(dir);
if (!d) return NULL;
if (!d) return (void *)0;
dirent64_convert(d, xx);
return xx;
}
@ -699,4 +699,3 @@
{
return smbw_fork();
}