Displaying 1 result from an estimated 1 matches for "r_findnativesymbolfromdll".
2005 Jun 02
2
dotcode typo? (PR#7917)
...>>I ran across the following in the R-2.0.1 source, src/main/dotcode.c, in the
>>function resolveNativeRoutine(), lines 146-163. Line 152 looks like a typo:
>>here are lines 149-155
>>
>> if(!*fun) {
>> if(dll.type != FILENAME) {
>> *fun = R_FindNativeSymbolFromDLL(buf, &dll, symbol);
>> if(!fun) {
>> errorcall(call, "cannot resolve native routine");
>> }
>> }
>>
>>and I think the "if(!fun)" should be "if(!*fun)".
>
>
> I think you'...