Difference for server/plugins.c from version 1.29 to 1.30


version 1.29 version 1.30
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_plugins_c =   * static char *rcsid_plugins_c =
  *   "$Id: plugins.c,v 1.29 2004/10/18 06:10:12 akirschbaum Exp $";   *   "$Id: plugins.c,v 1.30 2004/10/18 06:35:38 akirschbaum Exp $";
  */   */
   
 /*****************************************************************************/  /*****************************************************************************/
Line 1064
 
Line 1064
 CFParm* CFWCreateArtifact(CFParm* PParm)  CFParm* CFWCreateArtifact(CFParm* PParm)
 {  {
     CFParm *CFP;      CFParm *CFP;
     object* val;      static int val;
     CFP = (CFParm*)(malloc(sizeof(CFParm)));      CFP = (CFParm*)(malloc(sizeof(CFParm)));
     val = create_artifact(      val = create_artifact(
         (object *)(PParm->Value[0]),          (object *)(PParm->Value[0]),
         (char *)(PParm->Value[1])          (char *)(PParm->Value[1])
     );      );
     CFP->Value[0] = (void *)(val);      CFP->Value[0] = &val;
     return CFP;      return CFP;
 };  };
   


Legend:
line(s) removed in v.1.29 
line(s) changed
 line(s) added in v.1.30

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:43