[VIDEOPRT]

* Fix a bad sizeof() that's been with us since r12860 (more than 6 years ago).

svn path=/trunk/; revision=53404
This commit is contained in:
Amine Khaldi 2011-08-24 02:04:55 +00:00
parent 1274ff8f6f
commit d1a36b6e61

View file

@ -111,6 +111,6 @@ VideoPortGetAgpServices(
return FALSE;
}
RtlCopyMemory(AgpServices, &Interface.AgpReservePhysical, sizeof(AgpServices));
RtlCopyMemory(AgpServices, &Interface.AgpReservePhysical, sizeof(PVIDEO_PORT_AGP_SERVICES));
return TRUE;
}