int fgReadOrbElements(struct OrbElements *dest, gzFile src) {
char line[256];
- int i,j;
+ int i, j, len;
+
j = 0;
do {
if ( fggets(src, line, 256) == NULL ) {
"End of file found while reading planetary positions:\n");
return 0;
}
- for (i = 0; i < 256; i++) {
+ len = strlen(line);
+
+ for (i = 0; i < len; i++) {
if (line[i] == '#')
line[i] = 0;
}
/* $Log$
-/* Revision 1.7 1998/07/13 21:00:09 curt
-/* Wrote access functions for current fgOPTIONS.
+/* Revision 1.8 1998/08/22 01:18:59 curt
+/* Minor tweaks to avoid using unitialized memory.
/*
+ * Revision 1.7 1998/07/13 21:00:09 curt
+ * Wrote access functions for current fgOPTIONS.
+ *
* Revision 1.6 1998/05/29 20:35:41 curt
* Added zlib support for reading in compressed data files.
*
middle_color[i] = l->sky_color[i] - diff * 0.9;
outer_color[i] = l->adj_fog_color[i];
}
+ inner_color[3] = middle_color[3] = outer_color[3] = l->adj_fog_color[3];
xglPushMatrix();
/* $Log$
-/* Revision 1.8 1998/08/12 21:40:44 curt
-/* Sky now tracks adjusted fog color so it blends well with terrain.
+/* Revision 1.9 1998/08/22 01:18:59 curt
+/* Minor tweaks to avoid using unitialized memory.
/*
+ * Revision 1.8 1998/08/12 21:40:44 curt
+ * Sky now tracks adjusted fog color so it blends well with terrain.
+ *
* Revision 1.7 1998/07/22 21:39:21 curt
* Lower skirt tracks adjusted fog color, not fog color.
*