Skip to content

Commit 6d37efc

Browse files
jketemamchammer01
andauthored
Update cpp/ql/src/Best Practices/GuardedFree.qhelp
Co-authored-by: mc <[email protected]>
1 parent f9d9f9b commit 6d37efc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/Best Practices/GuardedFree.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<qhelp>
55

66
<overview>
7-
<p>The <code>free</code> function, which deallocates heap memory, may accept a NULL pointer and take no action. Therefore, it is unnecessary to check its argument for the value of NULL before a function call to <code>free</code>. As such, these guards may hinder performance and readability.</p>
7+
<p>The <code>free</code> function, which deallocates heap memory, may accept a NULL pointer and take no action. Therefore, it is unnecessary to check the argument for the value of NULL before a function call to <code>free</code>. As such, these guards may hinder performance and readability.</p>
88
</overview>
99

1010
<recommendation>

0 commit comments

Comments
 (0)