mirror of
https://github.com/reactos/reactos.git
synced 2025-05-21 10:05:35 +00:00
[WIN32K]
Fix a warning about an uninitialized variable :D svn path=/trunk/; revision=51000
This commit is contained in:
parent
38e6b4b424
commit
ccd17d40ec
1 changed files with 2 additions and 1 deletions
|
@ -511,7 +511,8 @@ DC_vPrepareDCsForBlit(PDC pdc1,
|
||||||
{
|
{
|
||||||
pdcFirst = pdc1 ;
|
pdcFirst = pdc1 ;
|
||||||
prcFirst = &rc1;
|
prcFirst = &rc1;
|
||||||
pdcSecond = NULL ;
|
pdcSecond = NULL;
|
||||||
|
prcSecond = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(pdcFirst && pdcFirst->dctype == DCTYPE_DIRECT)
|
if(pdcFirst && pdcFirst->dctype == DCTYPE_DIRECT)
|
||||||
|
|
Loading…
Reference in a new issue