Skip to content

Commit

Permalink
10735 pcfs: NULL pointer errors
Browse files Browse the repository at this point in the history
Reviewed by: Sebastian Wiedenroth <sebastian.wiedenroth@skylime.net>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Dan McDonald <danmcd@joyent.com>
  • Loading branch information
tsoome committed Apr 19, 2019
1 parent 814e729 commit 80a3d25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usr/src/uts/common/fs/pcfs/pc_vfsops.c
Expand Up @@ -118,9 +118,9 @@ static mntopt_t mntopts[] = {
{ MNTOPT_PCFS_NOFOLDCASE, nofoldcase_cancel, NULL, MO_DEFAULT, NULL },
{ MNTOPT_PCFS_FOLDCASE, foldcase_cancel, NULL, 0, NULL },
{ MNTOPT_PCFS_CLAMPTIME, clamptime_cancel, NULL, MO_DEFAULT, NULL },
{ MNTOPT_PCFS_NOCLAMPTIME, noclamptime_cancel, NULL, NULL, NULL },
{ MNTOPT_NOATIME, noatime_cancel, NULL, NULL, NULL },
{ MNTOPT_ATIME, atime_cancel, NULL, NULL, NULL },
{ MNTOPT_PCFS_NOCLAMPTIME, noclamptime_cancel, NULL, 0, NULL },
{ MNTOPT_NOATIME, noatime_cancel, NULL, 0, NULL },
{ MNTOPT_ATIME, atime_cancel, NULL, 0, NULL },
{ MNTOPT_PCFS_TIMEZONE, NULL, "+0", MO_DEFAULT | MO_HASVALUE, NULL },
{ MNTOPT_PCFS_SECSIZE, NULL, NULL, MO_HASVALUE, NULL }
};
Expand Down

0 comments on commit 80a3d25

Please sign in to comment.