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:
parent
74e19e5b81
commit
0132160229
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user