From 3fd4a73674db6b17a617eda27e15233b8c6a5096 Mon Sep 17 00:00:00 2001 From: Marcus Comstedt <marcus@mc.pp.se> Date: Mon, 2 Feb 1998 19:07:42 +0100 Subject: [PATCH] Minor cleanup of hubbes fix. Rev: src/modules/Oracle/oracle.c:1.8 --- src/modules/Oracle/oracle.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/Oracle/oracle.c b/src/modules/Oracle/oracle.c index e367447d96..831393f0d7 100644 --- a/src/modules/Oracle/oracle.c +++ b/src/modules/Oracle/oracle.c @@ -1,5 +1,5 @@ /* - * $Id: oracle.c,v 1.7 1998/01/30 06:20:21 hubbe Exp $ + * $Id: oracle.c,v 1.8 1998/02/02 18:07:42 marcus Exp $ * * Pike interface to Oracle databases. * @@ -34,7 +34,7 @@ #endif -RCSID("$Id: oracle.c,v 1.7 1998/01/30 06:20:21 hubbe Exp $"); +RCSID("$Id: oracle.c,v 1.8 1998/02/02 18:07:42 marcus Exp $"); #ifdef HAVE_ORACLE @@ -588,11 +588,11 @@ void pike_module_exit(void) if(oracle_program) { free_program(oracle_program); - oracle_program=0; + oracle_program = NULL; } if (oracle_result_program) { free_program(oracle_result_program); - oracle_program = NULL; + oracle_result_program = NULL; } #endif } -- GitLab