Changeset 38aaf005 in mainline for uspace/app


Ignore:
Timestamp:
2017-03-18T15:36:00Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ad67aa1
Parents:
0b97336
Message:

Callers of open() must use exactly one of O_RDONLY, O_WRONLY and O_RDWR

Location:
uspace/app
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/cp/cp.c

    r0b97336 r38aaf005  
    386386        }
    387387
    388         if (-1 == (fd2 = open(dest, O_CREAT))) {
     388        if (-1 == (fd2 = open(dest, O_WRONLY | O_CREAT))) {
    389389                printf("Unable to open destination file %s\n", dest);
    390390                close(fd1);
  • uspace/app/tester/mm/pager1.c

    r0b97336 r38aaf005  
    4848        TPRINTF("Creating temporary file...\n");
    4949
    50         fd = open(TEST_FILE, O_CREAT);
     50        fd = open(TEST_FILE, O_RDWR | O_CREAT);
    5151        if (fd < 0)
    5252                return NULL;
  • uspace/app/tester/vfs/vfs1.c

    r0b97336 r38aaf005  
    7676        TPRINTF("Created directory %s\n", TEST_DIRECTORY);
    7777       
    78         int fd0 = open(TEST_FILE, O_CREAT);
     78        int fd0 = open(TEST_FILE, O_RDWR | O_CREAT);
    7979        if (fd0 < 0)
    8080                return "open() failed";
Note: See TracChangeset for help on using the changeset viewer.