~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/lib-storage/index/mbox/mbox-file.c

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2002-2012 Dovecot authors, see the included COPYING file */
 
1
/* Copyright (c) 2002-2013 Dovecot authors, see the included COPYING file */
2
2
 
3
3
#include "lib.h"
4
4
#include "istream.h"
39
39
 
40
40
        if (fstat(fd, &st) < 0) {
41
41
                mbox_set_syscall_error(mbox, "fstat()");
42
 
                (void)close(fd);
 
42
                i_close_fd(&fd);
43
43
                return -1;
44
44
        }
45
45
 
77
77
 
78
78
                if (mbox->mbox_writeonly) {
79
79
                        mbox->mbox_file_stream =
80
 
                                i_stream_create_from_data(NULL, 0);
 
80
                                i_stream_create_from_data("", 0);
81
81
                } else {
82
82
                        mbox->mbox_file_stream =
83
83
                                i_stream_create_fd(mbox->mbox_fd,