libhdfs hdfs_read example uses hdfsRead wrongly
-----------------------------------------------

                 Key: HDFS-923
                 URL: https://issues.apache.org/jira/browse/HDFS-923
             Project: Hadoop HDFS
          Issue Type: Bug
          Components: contrib/libhdfs
    Affects Versions: 0.20.1
            Reporter: Ruyue Ma
            Assignee: Ruyue Ma
             Fix For: 0.21.0


In the examples of libhdfs,  the hdfs_read.c uses hdfsRead wrongly. 

{noformat}
    // read from the file
    tSize curSize = bufferSize;
    for (; curSize == bufferSize;) {
        curSize = hdfsRead(fs, readFile, (void*)buffer, curSize);
    }
{noformat} 

the condition curSize == bufferSize has problem.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to