Skip to content
Snippets Groups Projects
Unverified Commit 9f43baa7 authored by Brian Carrier's avatar Brian Carrier Committed by GitHub
Browse files

Make variables const in postgresql.

parent 24e17029
No related branches found
No related tags found
No related merge requests found
......@@ -1274,8 +1274,8 @@ int64_t TskDbPostgreSQL::findParObjId(const TSK_FS_FILE * fs_file, const char *p
// Need to break up 'path' in to the parent folder to match in 'parent_path' and the folder
// name to match with the 'name' column in tsk_files table
char *parent_name = "";
char *parent_path = "";
const char *parent_name = "";
const char *parent_path = "";
if (TskDb::getParentPathAndName(parentPath, &parent_path, &parent_name)){
return -1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment