Thread overview
[Issue 3324] New: d1: std.md5: given example not working
Sep 17, 2009
notna
Sep 19, 2009
notna
Jan 09, 2011
Brad Roberts
September 17, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3324

           Summary: d1: std.md5: given example not working
           Product: D
           Version: 1.042
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: more.more@ist-willig.de


--- Comment #0 from notna <more.more@ist-willig.de> 2009-09-17 06:35:02 PDT ---
In the given example of the D1 std.md5, this line can be found:
while ((len = fread(buffer, 1, buffer.sizeof, file)) != 0)

This isn't working here (DMD v1.042, Windows XP Pro). I had to replace it with:
while ((len = fread(buffer.ptr, 1, buffer.sizeof, file)) != 0)
                           ^^^

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 19, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3324



--- Comment #1 from notna <more.more@ist-willig.de> 2009-09-18 23:54:50 PDT ---
*** Issue 3331 has been marked as a duplicate of this issue. ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 19, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3324


Andrei Alexandrescu <andrei@metalanguage.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |andrei@metalanguage.com
         AssignedTo|nobody@puremagic.com        |andrei@metalanguage.com


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
January 09, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=3324


Andrei Alexandrescu <andrei@metalanguage.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|1.042                       |D1
         AssignedTo|andrei@metalanguage.com     |bugzilla@digitalmars.com


--- Comment #2 from Andrei Alexandrescu <andrei@metalanguage.com> 2011-01-09 08:52:03 PST ---
Reassigning D1 issue to Walter.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
January 09, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=3324


Brad Roberts <braddr@puremagic.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
                 CC|                            |braddr@puremagic.com
         Resolution|                            |FIXED


--- Comment #3 from Brad Roberts <braddr@puremagic.com> 2011-01-09 12:29:49 PST ---
Fixed in r2291.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------