mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 04:08:02 +02:00
Fix for CVE-2007-5958 - File existence disclosure.
This commit is contained in:
parent
f09b8007e7
commit
19b95cdd1d
1 changed files with 2 additions and 2 deletions
|
|
@ -1563,7 +1563,7 @@ SecurityLoadPropertyAccessList(void)
|
|||
if (!SecurityPolicyFile)
|
||||
return;
|
||||
|
||||
f = fopen(SecurityPolicyFile, "r");
|
||||
f = Fopen(SecurityPolicyFile, "r");
|
||||
if (!f)
|
||||
{
|
||||
ErrorF("error opening security policy file %s\n",
|
||||
|
|
@ -1646,7 +1646,7 @@ SecurityLoadPropertyAccessList(void)
|
|||
}
|
||||
#endif /* PROPDEBUG */
|
||||
|
||||
fclose(f);
|
||||
Fclose(f);
|
||||
} /* SecurityLoadPropertyAccessList */
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue