-This rule finds calls to open or socket where there is no corresponding close call in the program analyzed.
+This rule finds calls to socket where there is no corresponding close call in the program analyzed.
Leaving descriptors open will cause a resource leak that will persist even after the program terminates.
Ensure that all file or socket descriptors allocated by the program are freed before it terminates.
+Ensure that all socket descriptors allocated by the program are freed before it terminates.