The code passes user input as part of a SQL query without escaping special elements.
-It generates a SQL query to Postgres using sprintf,
-with the user-supplied data directly passed as an argument
-to sprintf. This leaves the code vulnerable to attack by SQL Injection.
Use a library routine to escape characters in the user-supplied
-string before converting it to SQL. Use esc and quote pqxx library functions.
Double release of the descriptor can lead to a crash of the program. Requires the attention of developers.
+ +We recommend that you exclude situations of possible double release.
+ +The following example demonstrates an erroneous and corrected use of descriptor deallocation.
+