mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
[videoprt]
fix uninitialized variable usage in error case svn path=/trunk/; revision=64837
This commit is contained in:
parent
b70df35327
commit
d0697e4b3d
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ IntCopyRegistryKey(
|
||||||
if (InfoBuffer == NULL)
|
if (InfoBuffer == NULL)
|
||||||
{
|
{
|
||||||
ERR_(VIDEOPRT, "Could not allocate buffer for key info\n");
|
ERR_(VIDEOPRT, "Could not allocate buffer for key info\n");
|
||||||
return Status;
|
return STATUS_INSUFFICIENT_RESOURCES;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue