23 May
2013
23 May
'13
1:21 p.m.
strcpy(ssi_private->name, p) in probe() sets "name" by "p", gotten from dts, while the length of "p", if the devicetree node name of SSI is commonly set, would always be larger than 1 char size, so need a larger size for "name".
Are you sure this isn't allowed for when the structure is allocated? Otherwise you also need to use strlcpy() as well.
@@ -152,5 +152,5 @@ struct fsl_ssi_private { } stats;
- char name[1];
- char name[32];
};
This looks like what c99 allows 'char name[0]' be used for. But ensure the \0 is allowed for before changing to 1 to 0.
David