Fix generated string-sequence marshalling for messages with multiple string[]/wstring[] fields#56
Draft
Copilot wants to merge 2 commits into
Draft
Fix generated string-sequence marshalling for messages with multiple string[]/wstring[] fields#56Copilot wants to merge 2 commits into
string[]/wstring[] fields#56Copilot wants to merge 2 commits into
Conversation
Agent-Logs-Url: https://github.com/noelex/rclnet/sessions/08e4ceff-033f-4ad2-8fdf-61232efe38e6 Co-authored-by: noelex <15687718+noelex@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix publish failure with multiple string arrays
Fix generated string-sequence marshalling for messages with multiple Apr 17, 2026
string[]/wstring[] fields
There was a problem hiding this comment.
Pull request overview
Updates the C# message code generator to prevent native string-sequence state corruption when marshalling messages that contain multiple variable-length string[] / wstring[] fields.
Changes:
- For dynamic (
variable-length)string[]fields, generatedWriteTo(ref Priv ...)now finalizes the existingCStringSequenceviaDispose()before allocating a replacement sequence. - For dynamic (
variable-length)wstring[]fields, generatedWriteTo(ref Priv ...)now finalizes the existingU16StringSequenceviaDispose()before allocating a replacement sequence.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Publishing could fail for messages containing multiple string-array fields (including nested messages), with intermittent
NullReferenceExceptionsurfacing from publisher buffer creation. The failure pattern matched native message state corruption during generated write-marshalling of dynamic string sequences.Root cause in generated
WriteTo(ref Priv ...)marshallingstring[]/wstring[]fields, generated code reassigned native sequence structs directly.Generator change
MessageClassBuilderemission logic for dynamic string arrays to finalize prior native sequence state before allocating replacement storage:CStringSequence: emitpriv.<field>.Dispose();beforenew CStringSequence(...)U16StringSequence: emitpriv.<field>.Dispose();beforenew U16StringSequence(...)Effect