[BACK]Return to tcpf.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Diff for /OpenXM_contrib2/asir2000/io/tcpf.c between version 1.40 and 1.41

version 1.40, 2003/03/12 07:56:23 version 1.41, 2003/05/23 00:11:58
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.39 2003/03/07 06:39:57 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.40 2003/03/12 07:56:23 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 890  void Pox_push_local(NODE arg,Obj *rp)
Line 890  void Pox_push_local(NODE arg,Obj *rp)
         int s;          int s;
         struct oLIST dummy;          struct oLIST dummy;
         VL vl;          VL vl;
         int index = QTOS((Q)ARG0(arg));          int index;
   
           if ( !arg )
                   error("ox_push_local : too few arguments.");
           index = QTOS((Q)ARG0(arg));
         valid_mctab_index(index);          valid_mctab_index(index);
         s = m_c_tab[index].c; arg = NEXT(arg);          s = m_c_tab[index].c; arg = NEXT(arg);
   
Line 907  void Pox_push_local(NODE arg,Obj *rp)
Line 910  void Pox_push_local(NODE arg,Obj *rp)
 void Pox_push_cmo(NODE arg,Obj *rp)  void Pox_push_cmo(NODE arg,Obj *rp)
 {  {
         int s;          int s;
         int index = QTOS((Q)ARG0(arg));          int index;
   
           if ( !arg )
                   error("ox_push_cmo : too few arguments.");
           index = QTOS((Q)ARG0(arg));
         valid_mctab_index(index);          valid_mctab_index(index);
         s = m_c_tab[index].c; arg = NEXT(arg);          s = m_c_tab[index].c; arg = NEXT(arg);
         for ( ; arg; arg = NEXT(arg) )          for ( ; arg; arg = NEXT(arg) )

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>