mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
IntEngGradientFill() fix ASSERT statements
svn path=/trunk/; revision=12312
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: gradient.c,v 1.14 2004/12/24 01:32:38 ion Exp $
|
||||
/* $Id: gradient.c,v 1.15 2004/12/24 06:00:53 royce Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
@@ -528,8 +528,9 @@ IntEngGradientFill(
|
||||
IN ULONG ulMode)
|
||||
{
|
||||
BOOL Ret;
|
||||
SURFOBJ *psoDest = NULL;
|
||||
ASSERT(pboDest && psoDest && pco);
|
||||
SURFOBJ *psoDest;
|
||||
ASSERT(pboDest);
|
||||
ASSERT(pco);
|
||||
|
||||
psoDest = &pboDest->SurfObj;
|
||||
ASSERT(psoDest);
|
||||
|
||||
Reference in New Issue
Block a user