[Slashdotjp-dev 1028] [555] Fix Use of uninitialized value at tagbox.pl line 285

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2008年 3月 26日 (水) 14:02:22 JST


Revision: 555
          http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=slashdotjp&view=rev&rev=555
Author:   tach
Date:     2008-03-26 14:02:22 +0900 (Wed, 26 Mar 2008)

Log Message:
-----------
 Fix Use of uninitialized value****@tagbo***** line 285

Modified Paths:
--------------
    slashjp/branches/2.5.0.192/debian/changelog
    slashjp/branches/2.5.0.192/plugins/Tags/tagbox.pl


-------------- next part --------------
Modified: slashjp/branches/2.5.0.192/debian/changelog
===================================================================
--- slashjp/branches/2.5.0.192/debian/changelog	2008-03-26 04:27:18 UTC (rev 554)
+++ slashjp/branches/2.5.0.192/debian/changelog	2008-03-26 05:02:22 UTC (rev 555)
@@ -8,8 +8,9 @@
   * Move processing %special keys to after encode changing at filter_params
     at Slash/Utility/Environment/Environment.pm
   * Fix firehose color for bookmark feed to same as normal bookmarks
+  * Fix Use of uninitialized value****@tagbo***** line 285
 
- -- Taku YASUI <tach****@osdn*****>  Wed, 26 Mar 2008 04:25:49 +0000
+ -- Taku YASUI <tach****@osdn*****>  Wed, 26 Mar 2008 05:00:59 +0000
 
 slash (2.5.0.192-7) unstable; urgency=low
 

Modified: slashjp/branches/2.5.0.192/plugins/Tags/tagbox.pl
===================================================================
--- slashjp/branches/2.5.0.192/plugins/Tags/tagbox.pl	2008-03-26 04:27:18 UTC (rev 554)
+++ slashjp/branches/2.5.0.192/plugins/Tags/tagbox.pl	2008-03-26 05:02:22 UTC (rev 555)
@@ -282,7 +282,8 @@
 sub insert_feederlog {
 	my($tagbox, $feeder_ar) = @_;
 	for my $feeder_hr (@$feeder_ar) {
-main::tagboxLog("addFeederInfo: tbid=$tagbox->{tbid} tagid=$feeder_hr->{tagid} affected_id=$feeder_hr->{affected_id} imp=$feeder_hr->{importance}");
+main::tagboxLog("addFeederInfo: tbid=$tagbox->{tbid} tagid=$feeder_hr->{tagid} affected_id=$feeder_hr->{affected_id} imp=$feeder_hr->{importance}")
+	if (defined($feeder_hr->{tagid}));
 		$tagboxdb->addFeederInfo($tagbox->{tbid}, $feeder_hr);
 	}
 }


Slashdotjp-dev メーリングリストの案内
Back to archive index