diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-09 05:35:56 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:20:43 +0100 |
commit | 899a22b840316d54a9563726e78f7a201a6702ef (patch) | |
tree | 9a3fe9f081b3b9554c29bc6b3cd6f3ae50def710 /src/Format/Tcformat.c | |
parent | 5281e2d3b9adea8dff1730d78fe94af85582aea8 (diff) | |
download | VeraCrypt-899a22b840316d54a9563726e78f7a201a6702ef.tar.gz VeraCrypt-899a22b840316d54a9563726e78f7a201a6702ef.zip |
Static Code Analysis : fix various memory leaks.
Diffstat (limited to 'src/Format/Tcformat.c')
-rw-r--r-- | src/Format/Tcformat.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index 5d830d0d..18dd23ce 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -7771,7 +7771,7 @@ ovf_end: void ExtractCommandLine (HWND hwndDlg, char *lpszCommandLine)
{
- char **lpszCommandLineArgs; /* Array of command line arguments */
+ char **lpszCommandLineArgs = NULL; /* Array of command line arguments */
int nNoCommandLineArgs; /* The number of arguments in the array */
if (_stricmp (lpszCommandLine, "-Embedding") == 0)
@@ -8012,6 +8012,9 @@ void ExtractCommandLine (HWND hwndDlg, char *lpszCommandLine) {
free (lpszCommandLineArgs[nNoCommandLineArgs]);
}
+
+ if (lpszCommandLineArgs)
+ free (lpszCommandLineArgs);
}
@@ -8277,7 +8280,7 @@ int ScanVolClusterBitmap (HWND hwndDlg, int *driveNo, __int64 nbrClusters, __int if (lpOutBuffer == NULL)
{
MessageBoxW (hwndDlg, GetString ("ERR_MEM_ALLOC"), lpszTitle, ICON_HAND);
- goto vcmf_error;
+ goto vcm_error;
}
lpInBuffer.StartingLcn.QuadPart = 0;
@@ -8328,7 +8331,7 @@ int ScanVolClusterBitmap (HWND hwndDlg, int *driveNo, __int64 nbrClusters, __int vcm_error:
CloseHandle (hDevice);
- free(lpOutBuffer);
+ if (lpOutBuffer) free(lpOutBuffer);
vcmf_error:
return -1;
|