Skip to content

Commit 91170b4

Browse files
author
Nikita Kraiouchkine
committed
MEM33-C: Remove illegal character from name
1 parent fc0f72b commit 91170b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

c/cert/src/rules/MEM33-C/CopyStructsWithAFlexibleArrayMemberDynamically.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id c/cert/copy-structs-with-a-flexible-array-member-dynamically
3-
* @name MEM33-C: Copy structures containing a flexible array member using memcpy or a similar function.
3+
* @name MEM33-C: Copy structures containing a flexible array member using memcpy or a similar function
44
* @description Copying a structure containing a flexbile array member by assignment ignores the
55
* flexible array member data.
66
* @kind problem

rule_packages/c/Memory2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
{
9696
"description": "Copying a structure containing a flexbile array member by assignment ignores the flexible array member data.",
9797
"kind": "problem",
98-
"name": "Copy structures containing a flexible array member using memcpy or a similar function.",
98+
"name": "Copy structures containing a flexible array member using memcpy or a similar function",
9999
"precision": "very-high",
100100
"severity": "error",
101101
"short_name": "CopyStructsWithAFlexibleArrayMemberDynamically",

0 commit comments

Comments
 (0)