Version: 1.7.28.0
Frequency: Consistently
Severity: High
Marketplace package name: -
Context: SDK code
Bug description:
My compiler started complaining about this code in FsCreateParamArray, looks like it tries to write double into intValue instead of doubleValue. Probably not what the author intended.
else if (fmt[i] == 'f')
{
result.array[i].type = FsVarParamTypeDouble;
result.array[i].intValue = va_arg(args, double);
}
Repro steps:
Attachments: