*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.9 1997/05/23 05:24:53 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.10 1997/06/01 03:39:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
{
PATH *result;
- result = path_copy(path);
- if (PointerIsValid(result))
+ if (PointerIsValid((char *)(result = path_copy(path))))
result->closed = TRUE;
return(result);
{
PATH *result;
- result = path_copy(path);
- if (PointerIsValid(result))
+ if (PointerIsValid((char *)(result = path_copy(path))))
result->closed = FALSE;
return(result);
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.9 1997/05/23 05:24:53 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.10 1997/06/01 03:39:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/