mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +00:00
ASSERT parameter assumptions in IntEngGradientFill()
svn path=/trunk/; revision=12110
This commit is contained in:
parent
2e027c01b7
commit
6d6cf25eee
1 changed files with 5 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: gradient.c,v 1.12 2004/12/12 21:43:17 royce Exp $
|
/* $Id: gradient.c,v 1.13 2004/12/14 04:26:49 royce Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -528,7 +528,10 @@ IntEngGradientFill(
|
||||||
IN ULONG ulMode)
|
IN ULONG ulMode)
|
||||||
{
|
{
|
||||||
BOOL Ret;
|
BOOL Ret;
|
||||||
SURFOBJ *psoDest = &pboDest->SurfObj;
|
SURFOBJ *psoDest;
|
||||||
|
ASSERT(pboDest && psoDest && pco);
|
||||||
|
|
||||||
|
psoDest = &pboDest->SurfObj;
|
||||||
ASSERT(psoDest);
|
ASSERT(psoDest);
|
||||||
|
|
||||||
MouseSafetyOnDrawStart(
|
MouseSafetyOnDrawStart(
|
||||||
|
|
Loading…
Reference in a new issue