Displaying 3 results from an estimated 3 matches for "stringwithformat".
2007 Jan 23
2
[LLVMdev] Semi-random crashes seemingly related to Arguments
...dex:(int)argIndex
{
Argument *ArgX;
if ( argIndex < numArgs ) {
int i;
ArgX = ((Function*)function)->arg_begin();
for (i=0 ;i<argIndex;i++) {
++ArgX;
}
[NSString stringWithFormat:@"get argument[%d/%d]=
%x",argIndex,numArgs,ArgX]; // with this in place, it doesn't
crash
return [MPWLLVMValue
llvmValueWithLLVMValue:ArgX]; // wrap the arg
} else {
//--- error handling, irrelevant here...
[NSException raise:@...
2007 Jan 23
0
[LLVMdev] Semi-random crashes seemingly related to Arguments
...ument *ArgX;
> if ( argIndex < numArgs ) {
> int i;
> ArgX = ((Function*)function)->arg_begin();
> for (i=0 ;i<argIndex;i++) {
> ++ArgX;
> }
>
> [NSString stringWithFormat:@"get argument[%d/%d]=
> %x",argIndex,numArgs,ArgX]; // with this in place, it doesn't
> crash
> return [MPWLLVMValue
> llvmValueWithLLVMValue:ArgX]; // wrap the arg
> } else {
> //--- error handling, irrelevant here...
>...
2007 Jan 16
3
Help upgrading to 1.1.3 (MD5 sum issues, album art corrupts files)
Hello all,
I recently upgraded the libFLAC used in my application Max (http://
sbooth.org/Max/) to 1.1.3 and added preliminary support for album
art. During the upgrade I evidently made some coding mistakes with
interesting results. I've combed everything over and can't quite see
the problems. I've become somewhat frustrated because my code didn't
really change