Changeset 4041 for src/perl5

Show
Ignore:
Timestamp:
05/28/05 06:47:55 (4 years ago)
Author:
clkao
svk:copy_cache_prev:
5515
Message:

Fix roundtrip.t, invoker is now properly set to NULL for non-method call.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl5/perl5.c

    r4038 r4041  
    4747        val = pugs_PvToVal(pugs_method); 
    4848    } 
    49     inv = pugs_SvToVal(ST(1)); 
     49    inv = SvOK(ST(1)) ? pugs_SvToVal(ST(1)) : NULL; 
    5050 
    5151    stack = (Val **)malloc(sizeof(Val*)*items-1);