Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
text-frontend: Fix memleaks in "get-option-translation" etc. (#76)
Assign the newly allocated string to a local variable and free it after printing it. This fixes memory leaks seen with cpdb-text-frontend when using commands like these ones to print translation for options of the CUPS-PDF printer: > get-option-translation output-bin PDF CUPS Output Tray > get-choice-translation output-bin face-down PDF CUPS Face Down Sample valgrind output: ==294129== 12 bytes in 1 blocks are definitely lost in loss record 56 of 1,291 ==294129== at 0x4843808: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) ==294129== by 0x4916B81: g_malloc (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x49334E2: g_strdup (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x495BE61: ??? (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x495BAEF: ??? (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x495CC7D: g_variant_get_va (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x495CEF2: g_variant_get (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x486FFB3: print_backend_call_get_option_translation_sync (backend-interface.c:3337) ==294129== by 0x485D843: cpdbGetOptionTranslation (cpdb-frontend.c:1486) ==294129== by 0x10BA32: control_thread (cpdb-text-frontend.c:452) ==294129== by 0x4940160: ??? (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.8200.1) ==294129== by 0x4A95111: start_thread (pthread_create.c:447) ==294129== by 0x4B1372F: clone (clone.S:100)
- Loading branch information