Skip to content

Bugfix for filenames with backslash and minor improvements #12

Merged
merged 11 commits into from
Jun 21, 2022
Merged

Conversation

donald
Copy link
Contributor

@donald donald commented Jun 20, 2022

No description provided.

donald added 11 commits June 20, 2022 11:06
Fixes: 1c04573 ("fn_escape: Do not use unicode regex")

The commit missed the fact that not only non-graph characters but also
the backslash character needs to be escaped.

We run into errors when the original filename contains backslash
characters like

   ./udev/links/\x2fdisk\x2fby-id\x2fscsi-35000c50084770037

which is wrongly decoded to

   ./udev/links//disk/by-id/scsi-35000c50084770037
Remove three void expressions which were used in early development to
avoid "unused parameter" warnings when the code was incomplete.
We don't need g_spawn to close our file descriptiors. However, doing so
produces unnecessary close() calls and interfers with debugging (e.g.
valgrind).
The current option parsing code is based on g_option_context_parse from
glib. This code doesn't support abbreviated long options.

Additionally, there is a possible memory leak with the current
implementation, because g_option_context_parse() removes processed
options from the argument vector so these strings are not freed when
argv runs out of scope.

Switch to getopt_long.

Because of the differences in the interfaces, we need to change the
surrounding code a bit.
For some reason lost in ancient times, the slave is started with eitehr
--delete or an explicit --nodelete. The later is not required, because
that is the default.
@donald donald merged commit 917e92a into main Jun 21, 2022
Sign in to join this conversation on GitHub.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant