You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey we narrowed down crash dumps on our .net 4.8 app server running Imageflow 0.13.2.
The utility function is in a library using .net standard 2.0, and this is the input function
using (var b = new ImageJob())
{
await b.BuildCommandString(
new StreamSource(streamIn, false),
new StreamDestination(streamOut, false),
$"width={width}&height={height}&mode={fitMode}&ignore_icc_errors=true&bgcolor={bgcolor}")
.Finish()
.SetSecurityOptions(new SecurityOptions().SetMaxFrameSize(FrameSizeLimit))
.InProcessAsync();
}
I'm getting an error at JobContext.cs
//Unhandled exception at 0x00007FF97035437D (ntdll.dll) in 1_20250106_121706_memory.hdmp: 0xC0000005: Access violation writing location 0x0000000000000008.
var ptr = NativeMethods.imageflow_context_send_json(Handle, new IntPtr(methodPtr), new IntPtr(jsonPtr), new UIntPtr((ulong)utf8Json.Length));
The text was updated successfully, but these errors were encountered:
So based off the mem address, it's a null reference of an 8-byte-or-larger
struct, which could be the .Net IntPtr...
Is that all the stack trace info available?
On Mon, Jan 6, 2025, 2:25 PM DanPatten ***@***.***> wrote:
Hey we narrowed down crash dumps on our .net 4.8 app server running
Imageflow 0.13.2.
The utility function is in a library using .net standard 2.0, and this is
the input function
using (var b = new ImageJob())
{
await b.BuildCommandString(
new StreamSource(streamIn, false),
new StreamDestination(streamOut, false),
$"width={width}&height={height}&mode={fitMode}&ignore_icc_errors=true&bgcolor={bgcolor}")
.Finish()
.SetSecurityOptions(new SecurityOptions().SetMaxFrameSize(FrameSizeLimit))
.InProcessAsync();
}
I'm getting an error at JobContext.cs
//Unhandled exception at 0x00007FF97035437D (ntdll.dll) in 1_20250106_121706_memory.hdmp: 0xC0000005: Access violation writing location 0x0000000000000008.
var ptr = NativeMethods.imageflow_context_send_json(Handle, new IntPtr(methodPtr), new IntPtr(jsonPtr), new UIntPtr((ulong)utf8Json.Length));
—
Reply to this email directly, view it on GitHub
<#62>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAA2LH3LRZWVWXFLZTFMJWT2JLYD7AVCNFSM6AAAAABUWMZOLSVHI2DSMVQWIX3LMV43ASLTON2WKOZSG43TCNBXGIZTMOI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
Hey we narrowed down crash dumps on our .net 4.8 app server running Imageflow 0.13.2.
The utility function is in a library using .net standard 2.0, and this is the input function
I'm getting an error at JobContext.cs
The text was updated successfully, but these errors were encountered: