This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ffind problem with RL-ARM 3.24

I have just update the RL-ARM source fils with the 3.24 and now when I use :

FINFO info;
ffind("Show.sdp",&info);

I have an Dabt_Handler.

What is the problem ?

Thanks

Parents
  • We have already found and corrected this problem. The fix will be available in the next release.

    The ffind() function tries to convert the filename to upper case. Because it is located in R0 section, a Data abort is generated.

    As a temporary solution, please use the filename located in RW section.

    FINFO info;
    char fn[128];
    
    strcpy (&fn,"Show.sdp");
    ffind(fn,&info);
    

    Franc

Reply
  • We have already found and corrected this problem. The fix will be available in the next release.

    The ffind() function tries to convert the filename to upper case. Because it is located in R0 section, a Data abort is generated.

    As a temporary solution, please use the filename located in RW section.

    FINFO info;
    char fn[128];
    
    strcpy (&fn,"Show.sdp");
    ffind(fn,&info);
    

    Franc

Children
No data