Ticket #3695 (closed defect: duplicate)

Opened 8 years ago

Last modified 7 years ago

Hex search fails to find binary data

Reported by: mooffie Owned by:
Priority: minor Milestone:
Component: mc-search Version: master
Keywords: Cc:
Blocked By: Blocking:
Branch state: no branch Votes for changeset:

Description

In the common situation where the user uses a UTF-8 terminal and default encoding, "Hexadecimal" search fails to find data in binary files.

That's because the regexp is created in UTF-8 mode (!G_REGEX_RAW) but the binary data is invalid UTF-8 sequence.

It's relatively easy to fix this, but I'll have to wait till #3694 gets committed (as it fixes quoted strings in hex patterns, which may be a game changer).

(BTW, in the mailing list I instructed a user to tick the "All charsets" checkbox to work around this bug. The checkbox causes additional regexps to be created not in UTF-8 mode (that is, G_REGEX_RAW) -- it's the 1st of these extra regexps that's actually going to find the data.)

Change History

comment:1 follow-up: ↓ 2 Changed 8 years ago by andrew_b

Related to #3589.

comment:2 in reply to: ↑ 1 Changed 8 years ago by mooffie

Replying to andrew_b:

Related to #3589.


Thanks for letting me know.

It's the same issue. So mark one of the tickets as dup. Note, however, that my solution is a two-lines fix so the patches at #3589 will just add noise.)

comment:3 Changed 8 years ago by andrew_b

  • Status changed from new to closed
  • Resolution set to duplicate
  • Milestone Future Releases deleted

Closed as duplicate of #3589.

comment:4 Changed 7 years ago by andrew_b

  • Blocked By 3694 removed
Note: See TracTickets for help on using tickets.