"Assertion Failure"
"Invalid type in cm_intrinsic_len, file cmintrin.cpp, line
1679 Abort, Debug Break, Ignore?"
I'm able to hit ignore three times and continue working as
normal but I cant figure out how to make this stop. I've
exported the object and optimized and re-imported and still
get the same error. I'm using PB11.5.
Does anyone know how to stop this problem?
If len( dw_1.object.data[1] ) > 0 Then ...
When changed to
If len( String( dw_1.object.data[1] ) ) > 0 Then ...
everything worked again
--
Report Bugs: http://case-express.sybase.com/cx/welcome.do
Product Enhancement Requests:
http://my.isug.com/cgi-bin/1/c/submit_enhancement
<OCF> wrote in message news:4a81e5d5.797...@sybase.com...
There are 2 len functions; len(string) and len(blob). The compiler
can't pick which one to call since you're passing in an any variable.
But you should get a compiler error, not an assertion failure.