/[smeserver]/rpms/e-smith-lib/sme8/e-smith-lib-1.18.0-FixFileDescriptorLeak.patch
ViewVC logotype

Contents of /rpms/e-smith-lib/sme8/e-smith-lib-1.18.0-FixFileDescriptorLeak.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Wed Aug 20 21:25:30 2008 UTC (15 years, 9 months ago) by slords
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
New dev stream

1 diff -Nur -x '*.orig' -x '*.rej' e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm mezzanine_patched_e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm
2 --- e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm 2006-02-17 03:52:14.000000000 +0000
3 +++ mezzanine_patched_e-smith-lib-1.18.0/root/usr/lib/perl5/site_perl/esmith/I18N.pm 2007-11-01 20:06:45.000000000 +0000
4 @@ -93,6 +93,7 @@
5 -f "$localedir/$locale/LC_MESSAGES/server-console.po");
6 }
7
8 + closedir LOCALE;
9 return @locales;
10 }
11
12 @@ -262,7 +263,9 @@
13
14 return () unless opendir LOCALE, $localedir;
15
16 - return grep(!/\./, readdir LOCALE);
17 + my @locales = grep(!/\./, readdir LOCALE);
18 + closedir LOCALE;
19 + return @locales;
20 }
21
22 =head2 fallbackLanguage()

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed