Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7ae4318

Browse files
committed
Remove 3 hex digit limit on symbol number in recent fix.
1 parent 55986a5 commit 7ae4318

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/msvc/gendef.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Script that generates a .DEF file for all objects in a directory
44
#
5-
# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.7 2008/01/31 03:26:14 adunstan Exp $
5+
# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.8 2008/01/31 16:30:24 adunstan Exp $
66
#
77

88
die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
@@ -27,7 +27,7 @@
2727
{
2828
s/\(\)//g;
2929
my @pieces = split;
30-
next unless $pieces[0] =~ /^[A-F0-9]{3}$/;
30+
next unless $pieces[0] =~ /^[A-F0-9]{3,}$/;
3131
next unless $pieces[6];
3232
next if ($pieces[2] eq "UNDEF");
3333
next unless ($pieces[4] eq "External");

0 commit comments

Comments
 (0)