Opened 10 years ago

Last modified 10 years ago

#7022 closed Bugs

Prevent tool Bug Fix. — at Version 2

Reported by: g.gupta@… Owned by: az_sw_dude
Milestone: Boost 1.52.0 Component: date_time
Version: Boost 1.50.0 Severity: Problem
Keywords: Cc: yogen.saini@…

Description (last modified by viboes)

It is Prevent tool Bug Fix.In file boost/trunk/libs/date_time/src/gregorian/date_generators.cpp

the IF condition:

   if(ele >= 1 || ele <= 5) {
      return _nth_as_str[ele];
      } 
    else {
      return _nth_as_str[0];
      }

is not used properly. Instead of "|| " in this if condition it should be "&&". Only by use of "&&" this condition makes sense.

Change History (4)

by g.gupta@…, 10 years ago

Attachment: date_generators.cpp added

Fix for the reported Bug.

by g.gupta@…, 10 years ago

Attachment: date_generators_7022.patch added

Patch file for the reported Bug.

comment:1 by viboes, 10 years ago

Description: modified (diff)

comment:2 by viboes, 10 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.