[Commit] nickle ChangeLog,1.122,1.123 func.c,1.25,1.26

Keith Packard commit at keithp.com
Thu Feb 24 19:23:09 PST 2005


Committed by: keithp

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv30645

Modified Files:
	ChangeLog func.c 
Log Message:
2005-02-24  Eric Anholt  <anholt at freedesktop.org>

	reviewed by: Keith Packard

	* func.c: (NewBuiltinCode):
	Initialize base.func pointer to NULL.


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/nickle/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- ChangeLog	14 Jan 2005 16:58:53 -0000	1.122
+++ ChangeLog	25 Feb 2005 03:23:06 -0000	1.123
@@ -1,3 +1,10 @@
+2005-02-24  Eric Anholt  <anholt at freedesktop.org>
+
+	reviewed by: Keith Packard
+
+	* func.c: (NewBuiltinCode):
+	Initialize base.func pointer to NULL.
+
 2005-01-14  Keith Packard  <keithp at keithp.com>
 
 	* compile.c: (CompileCall):

Index: func.c
===================================================================
RCS file: /local/src/CVS/nickle/func.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- func.c	9 Jul 2004 18:48:35 -0000	1.25
+++ func.c	25 Feb 2005 03:23:06 -0000	1.26
@@ -99,6 +99,7 @@
     bc->base.args = args;
     bc->base.name = 0;
     bc->base.previous = 0;
+    bc->base.func = 0;
     bc->base.doc = doc ? NewStrString (doc) : Void;
     
     bc->builtin.needsNext = needsNext;




More information about the Commit mailing list