From: <no...@so...> - 2002-08-22 13:10:46
|
Bugs item #598602, was opened at 2002-08-22 00:41 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=598602&group_id=5523 >Category: Execution Problem >Group: SableVM >Status: Closed >Resolution: Duplicate Priority: 5 Submitted By: Nobody/Anonymous (nobody) >Assigned to: Etienne M. Gagnon (egagnon) Summary: Native libraries are handled incorrectly Initial Comment: I submitted this bug already but it didn't show up and followups just return 'ERROR'. SableVM 1.0.3. This patch should be self-explanatory: --- work.orig/sablevm-1.0.3/src/libsablevm/java_lang_Runtime.c Tue Aug 6 03:27:22 2002 +++ work/sablevm-1.0.3/src/libsablevm/java_lang_Runtime.c Sun Aug 18 21:56:25 2002 @@ -254,6 +254,9 @@ (*(class_loader_info->native_library_list_tail))->name = filename; (*(class_loader_info->native_library_list_tail))->handle = handle; + class_loader_info->native_library_list_tail = + &(*(class_loader_info->native_library_list_tail))->next; + result = 1; end: ---------------------------------------------------------------------- >Comment By: Etienne M. Gagnon (egagnon) Date: 2002-08-22 09:10 Message: Logged In: YES user_id=15365 This bug was already fixed in the CVS repository a few days ago. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=598602&group_id=5523 |