Actions
Bug #10438
closedfd: NULL pointer errors
Start date:
2019-02-22
Due date:
% Done:
100%
Estimated time:
Difficulty:
Medium
Tags:
Gerrit CR:
Description
NULL pointer errors:
In file included from ../../common/sys/param.h:48:0, from ../../common/io/fd.c:41: ../../common/io/fd.c: In function 'fd_attach': ../../common/sys/null.h:32:14: error: passing argument 6 of 'ddi_create_minor_node' makes integer from pointer without a cast [-Werror=int-conversion] #define NULL ((void *)0) ^ ../../common/io/fd.c:496:44: note: in expansion of macro 'NULL' sig_minor | dmdp->minor, DDI_NT_FD, NULL) ^~~~ In file included from ../../common/io/fd.c:54:0: ../../common/sys/sunddi.h:1564:1: note: expected 'int' but argument is of type 'void *' ddi_create_minor_node(dev_info_t *dip, char *name, int spec_type, ^~~~~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors
Updated by Electric Monk over 3 years ago
- Status changed from In Progress to Closed
- % Done changed from 90 to 100
git commit 55aeed12a7fb74469f7ea0fbb3d2329d4c8c96ae
commit 55aeed12a7fb74469f7ea0fbb3d2329d4c8c96ae Author: Toomas Soome <tsoome@me.com> Date: 2019-02-25T19:05:21.000Z 10438 fd: NULL pointer errors Reviewed by: Aurélien Larcher <aurelien.larcher@gmail.com> Reviewed by: Andy Stormont <astormont@racktopsystems.com> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Dan McDonald <danmcd@joyent.com>
Actions