1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Fixed empty line problem

This commit is contained in:
jsteube 2015-12-16 17:01:14 +01:00
parent ed35c11e2a
commit 52c416ba72

View File

@ -13284,7 +13284,7 @@ int main (int argc, char **argv)
clGetProgramBuildInfo (device_param->program, device_param->device, CL_PROGRAM_BUILD_LOG, 0, NULL, &ret_val_size);
if (ret_val_size > 1)
if (ret_val_size > 2)
{
char *build_log = (char *) malloc (ret_val_size + 1);