Skip to content

Commit

Permalink
2.32.14
Browse files Browse the repository at this point in the history
  • Loading branch information
nidud committed Dec 24, 2020
1 parent ff99c52 commit 53d108e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
Binary file modified bin/asmc.exe
Binary file not shown.
Binary file modified bin/asmc64.exe
Binary file not shown.
5 changes: 1 addition & 4 deletions source/asmc/src/coff.c
Expand Up @@ -50,9 +50,6 @@ static const char * const SymDebName[DBGS_MAX] = { ".debug$S", ".debug$T" };

static const char szdrectve[] = { ".drectve" };

static uint_32 CV8SymIndex;
extern uint_32 CV8LineTable;

/* alloc a string which will be stored in the COFF string table */

static uint_32 Coff_AllocString( struct coffmod *cm, const char *string, int len )
Expand Down Expand Up @@ -435,8 +432,8 @@ static uint_32 coff_write_symbols( struct module_info *modinfo, struct coffmod *
p = ( curr->e.seginfo->aliasname ? curr->e.seginfo->aliasname : ConvertSectionName( &curr->sym, NULL, buffer ) );
len = strlen( p );
if ( len > IMAGE_SIZEOF_SHORT_NAME ) {
p = NULL;
strpos = Coff_AllocString( cm, p, len );
p = NULL;
}
coff_write_symbol(p, strpos, 0, i, IMAGE_SYM_TYPE_NULL, IMAGE_SYM_CLASS_STATIC,
Options.no_section_aux_entry == FALSE ? 1 : 0 );
Expand Down
2 changes: 1 addition & 1 deletion source/asmc/src/h/version.h
Expand Up @@ -3,6 +3,6 @@

#define ASMC_MAJOR_VER 2
#define ASMC_MINOR_VER 32
#define ASMC_SUBMINOR_VER 13
#define ASMC_SUBMINOR_VER 14

#endif

0 comments on commit 53d108e

Please sign in to comment.