On 03/14/2013 04:18 PM, ??? wrote: > Hi Vijay Bellur, > I just change static char oldvolfile[131072] to a larger value, please > correct me if there're any side effect of it. The better fix is to convert static char to a static char * and dynamically allocate a buffer based on the size of the new volume file. This way you would not need a very large static buffer if you are dealing with volume files of smaller sizes. Thanks, Vijay