- Fixes memory leaks in scst_user spotted by new SGV cache backend

- Version changed on -pre3
 - Minor fixes and cosmetics


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@199 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2007-09-25 09:52:53 +00:00
parent a61f896dd3
commit 455778bf10
5 changed files with 43 additions and 39 deletions
+2 -2
View File
@@ -663,9 +663,9 @@ void *main_loop(void *arg)
vcmd.fd = open_dev_fd(dev);
if (vcmd.fd < 0) {
res = vcmd.fd;
res = -errno;
PRINT_ERROR_PR("Unable to open file %s (%s)", dev->file_name,
strerror(res));
strerror(-res));
goto out;
}