Skip to content

Commit c63ac8a

Browse files
WalltedKamilKoprykIntel
authored andcommitted
fix: remove potential string's internal buffer overlaping if resized
based on: 92ea7ee fixes Release compilation for gcc12 Related-To: NEO-10767 Signed-off-by: Grzegorz Choinski <[email protected]> Co-authored-by: Kamil Kopryk <[email protected]>
1 parent 672387e commit c63ac8a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

shared/source/device_binary_format/zebin/zeinfo_decoder.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ DecodeError extractZeInfoSections(const Yaml::YamlParser &parser, ZeInfoSections
7777
} else if (Tags::functions == key) {
7878
outZeInfoSections.functions.push_back(&globalScopeNd);
7979
} else {
80-
encounterUnknownZeInfoAttribute("\"" + parser.readKey(globalScopeNd).str() + "\" in global scope of .ze_info", outErrReason, outWarning, err);
80+
std::ostringstream entryStream;
81+
82+
entryStream << "\"" << parser.readKey(globalScopeNd).str() << "\" in global scope of .ze_info";
83+
encounterUnknownZeInfoAttribute(entryStream.str(), outErrReason, outWarning, err);
8184
}
8285
}
8386
return err;
@@ -288,7 +291,10 @@ DecodeError populateExternalFunctionsMetadata(NEO::ProgramInfo &dst, NEO::Yaml::
288291
err = execEnvErr;
289292
}
290293
} else {
291-
encounterUnknownZeInfoAttribute("\"" + yamlParser.readKey(functionMetadataNd).str() + "\" in context of : external functions", outErrReason, outWarning, err);
294+
std::ostringstream entryStream;
295+
296+
entryStream << "\"" << yamlParser.readKey(functionMetadataNd).str() << "\" in context of : external functions";
297+
encounterUnknownZeInfoAttribute(entryStream.str(), outErrReason, outWarning, err);
292298
}
293299
}
294300

0 commit comments

Comments
 (0)