On Wednesday 26 April 2017 04:54 PM, Tom Rini wrote:
> On Wed, Apr 26, 2017 at 08:56:49AM +0530, Lokesh Vutla wrote:
>>
>>
>> On Tuesday 25 April 2017 11:34 PM, Tom Rini wrote:
>>> On Tue, Apr 25, 2017 at 10:22:27AM +0530, Lokesh Vutla wrote:
In file ext4fs.c funtion ext4fs_read_file() compa
On Wed, Apr 26, 2017 at 08:56:49AM +0530, Lokesh Vutla wrote:
>
>
> On Tuesday 25 April 2017 11:34 PM, Tom Rini wrote:
> > On Tue, Apr 25, 2017 at 10:22:27AM +0530, Lokesh Vutla wrote:
> >> In file ext4fs.c funtion ext4fs_read_file() compares an
> >> unsigned expression with < 0 like below
> >>
>
On Tuesday 25 April 2017 11:34 PM, Tom Rini wrote:
> On Tue, Apr 25, 2017 at 10:22:27AM +0530, Lokesh Vutla wrote:
>> In file ext4fs.c funtion ext4fs_read_file() compares an
>> unsigned expression with < 0 like below
>>
>> lbaint_t blknr;
>> blknr = read_allocated_block(&(node->inode),
On Tue, Apr 25, 2017 at 10:22:27AM +0530, Lokesh Vutla wrote:
> In file ext4fs.c funtion ext4fs_read_file() compares an
> unsigned expression with < 0 like below
>
> lbaint_t blknr;
> blknr = read_allocated_block(&(node->inode), i);
> if (blknr < 0)
> return -1;
>
In file ext4fs.c funtion ext4fs_read_file() compares an
unsigned expression with < 0 like below
lbaint_t blknr;
blknr = read_allocated_block(&(node->inode), i);
if (blknr < 0)
return -1;
blknr is of type ulong/uint64_t. read_allocated_block() returns
long i
5 matches
Mail list logo