Huw Davies wrote:
> On Wed, Nov 08, 2006 at 09:56:54PM +, Andrew Talbot wrote:
>> @@ -666,16 +672,20 @@
>> if(psA->cPasteEntries > 0)
>> {
>> UINT i;
>> -for(i = 0; i < psA->cPasteEntries; i++)
>> +
>> +for(i = psA->cPasteEntries; i != 0;)
>
> Was there any
On Wed, Nov 08, 2006 at 09:56:54PM +, Andrew Talbot wrote:
> @@ -666,16 +672,20 @@
> if(psA->cPasteEntries > 0)
> {
> UINT i;
> -for(i = 0; i < psA->cPasteEntries; i++)
> +
> +for(i = psA->cPasteEntries; i != 0;)
Was there any need for this?
Huw.