Static pointer variable was not initialized to NULL.

git-svn-id: file:///fltk/svn/fltk/trunk@166 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 1998-12-21 13:54:02 +00:00
parent 13070ee270
commit 2454e52dd4

View File

@ -1,5 +1,5 @@
//
// "$Id: fl_vertex.cxx,v 1.3 1998/10/21 14:21:03 mike Exp $"
// "$Id: fl_vertex.cxx,v 1.4 1998/12/21 13:54:02 mike Exp $"
//
// Portable drawing routines for the Fast Light Tool Kit (FLTK).
//
@ -71,7 +71,7 @@ void fl_rotate(double d) {
}
}
static XPoint *p;
static XPoint *p = (XPoint *)0;
// typedef what the x,y fields in a point are:
#ifdef WIN32
typedef int COORD_T;
@ -223,5 +223,5 @@ void fl_circle(double x, double y,double r) {
}
//
// End of "$Id: fl_vertex.cxx,v 1.3 1998/10/21 14:21:03 mike Exp $".
// End of "$Id: fl_vertex.cxx,v 1.4 1998/12/21 13:54:02 mike Exp $".
//