Changeset 668


Ignore:
Timestamp:
2008/12/30 13:57:55 (3 years ago)
Author:
dai
Message:

ReadImplメソッド内で配列の要素に対して整数以外の値が指定されていたタイプミスを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/System/IO/TextReader.ab

    r665 r668  
    156156        Wend 
    157157        ReadImpl = Math.Min(buf.Length - pos, count) 
    158         ActiveBasic.Strings.ChrCopy(buffer, VarPtr(p[buf]), ReadImpl As SIZE_T) 
     158        ActiveBasic.Strings.ChrCopy(buffer, VarPtr(p[pos]), ReadImpl As SIZE_T) 
    159159        pos += ReadImpl 
    160160    End Function 
Note: See TracChangeset for help on using the changeset viewer.