Skip to content

Commit c0a85ea

Browse files
author
vdisasmdev
committed
* Disable option PO_SECTION_AUTORENAME_NON_ALPHANUMERIC by default.
1 parent f73886d commit c0a85ea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

PE.Common.pas

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,12 @@ interface
7777
DEFAULT_PARSER_FLAGS = ALL_PARSER_FLAGS;
7878
DEFAULT_OPTIONS = [
7979
PO_SECTION_VSIZE_FALLBACK,
80-
PO_SECTION_AUTORENAME_NON_ALPHANUMERIC,
81-
PO_NULL_INVALID_DIRECTORY
80+
81+
// This is disabled by default because now it can reject good names, like
82+
// .text, .data. In future this option must be either removed or reworked.
83+
// PO_SECTION_AUTORENAME_NON_ALPHANUMERIC,
84+
85+
PO_NULL_INVALID_DIRECTORY
8286
];
8387

8488
// Data directories.

0 commit comments

Comments
 (0)