1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00

Merge pull request #3424 from davidbolvansky/metal_spaces_in_inc_path

metal: escape spaces in include path with backslash
This commit is contained in:
Jens Steube 2022-08-22 15:34:34 +02:00 committed by GitHub
commit 93e9da9716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,6 +197,8 @@ static int hc_mtlBuildOptionsToDict (void *hashcat_ctx, const char *build_option
{
NSString *path_key = @"INCLUDE_PATH";
NSString *path_value = [NSString stringWithCString: include_path encoding: NSUTF8StringEncoding];
// Include path may contain spaces, escape them with a backslash
path_value = [path_value stringByReplacingOccurrencesOfString:@" " withString:@"\\ "];
[build_options_dict setObject:path_value forKey:path_key];
}