File diff r21519:2102378bd25d → r21520:22c5c9550ff0
src/base_media_func.h
Show inline comments
 
@@ -97,13 +97,13 @@ bool BaseSet<T, Tnum_files, Tsearch_in_t
 
		}
 

	
 
		file->filename = str_fmt("%s%s", path, filename);
 

	
 
		/* Then find the MD5 checksum */
 
		item = md5s->GetItem(filename, false);
 
		if (item == NULL) {
 
		if (item == NULL || item->value == NULL) {
 
			DEBUG(grf, 0, "No MD5 checksum specified for: %s (in %s)", filename, full_filename);
 
			return false;
 
		}
 
		char *c = item->value;
 
		for (uint i = 0; i < sizeof(file->hash) * 2; i++, c++) {
 
			uint j;