Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
6.2.0, 6.0.6
-
None
Description
The following example:
decimal5_1 a := 0; utf8 ds := (utf8) nofold(a); decimal5_2 b := (decimal5_2) nofold(ds); ds; b;
will generate calls to
extern RTL_API void rtlDecPushUtf8(size32_t lenD,const char * d);
But the library exports a function
ECLRTL_API void rtlDecPushUtf8(size32_t len, const void * data);
I suspect that the library should be exporting the char* version.