Changeset 19878 in vbox
- Timestamp:
- May 21, 2009 11:37:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/spu_loader/spuload.c
r15532 r19878 85 85 crError( "Couldn't load the SPU entry point \"%s\" from SPU \"%s\"!", 86 86 SPU_ENTRY_POINT_NAME, name ); 87 crSPUUnloadChain(the_spu); 88 return NULL; 87 89 } 88 90 … … 95 97 { 96 98 crError( "I found the SPU \"%s\", but loading it failed!", name ); 99 crSPUUnloadChain(the_spu); 100 return NULL; 97 101 } 98 102 #ifdef IN_GUEST … … 125 129 if (!the_spu->function_table) { 126 130 crDebug("Failed to init %s SPU", name); 131 crSPUUnloadChain(the_spu); 127 132 return NULL; 128 133 }
Note:
See TracChangeset
for help on using the changeset viewer.