[Slashdotjp-dev 1111] [638] * Fix: Use of uninitialized value in length at

アーカイブの一覧に戻る

svnno****@sourc***** svnno****@sourc*****
2008年 5月 11日 (日) 03:53:40 JST


Revision: 638
          http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=slashdotjp&view=rev&rev=638
Author:   tach
Date:     2008-05-11 03:53:40 +0900 (Sun, 11 May 2008)

Log Message:
-----------
 * Fix: Use of uninitialized value in length at
   /usr/lib/perl5/Slash/Utility/Data.pm line 2054.

Modified Paths:
--------------
    slashjp/branches/2.5.0.192/Slash/Utility/Data/Data.pm
    slashjp/branches/2.5.0.192/debian/changelog


-------------- next part --------------
Modified: slashjp/branches/2.5.0.192/Slash/Utility/Data/Data.pm
===================================================================
--- slashjp/branches/2.5.0.192/Slash/Utility/Data/Data.pm	2008-05-09 06:16:21 UTC (rev 637)
+++ slashjp/branches/2.5.0.192/Slash/Utility/Data/Data.pm	2008-05-10 18:53:40 UTC (rev 638)
@@ -2050,7 +2050,7 @@
 			my $a_lc = lc $a;
 			next unless $allowed{$a_lc};
 			my $data = $attr_data{$a_lc} || '';
-			$data = fudgeurl($data) if $allowed{$a_lc}{url};
+			$data = fudgeurl($data) || '' if $allowed{$a_lc}{url};
 			next unless length $data;
 			$wholetag .= qq{ $a_lc="$data"};
 			++$found{$a_lc} if $required{$a_lc};

Modified: slashjp/branches/2.5.0.192/debian/changelog
===================================================================
--- slashjp/branches/2.5.0.192/debian/changelog	2008-05-09 06:16:21 UTC (rev 637)
+++ slashjp/branches/2.5.0.192/debian/changelog	2008-05-10 18:53:40 UTC (rev 638)
@@ -7,8 +7,10 @@
     - getCurrentUser('mobile') is true when mobile mode has been enabled
   * Add number of display journal count to _printHead() on Journal.pm
     - You can use 'jcount' variable journalhead;journal template
+  * Fix: Use of uninitialized value in length at
+    /usr/lib/perl5/Slash/Utility/Data.pm line 2054.
 
- -- Taku YASUI <tach****@osdn*****>  Fri,  9 May 2008 06:13:59 +0000
+ -- Taku YASUI <tach****@osdn*****>  Sun, 11 May 2008 03:52:48 +0900
 
 slash (2.5.0.192-11) unstable; urgency=low
 


Slashdotjp-dev メーリングリストの案内
アーカイブの一覧に戻る