mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-23075 Add nullptr check for localtime call at writesrc.cpp
This commit is contained in:
parent
30e23b0d28
commit
2c6bac2f97
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ usrc_writeFileNameGeneratedBy(
|
|||
|
||||
time(&t);
|
||||
lt=localtime(&t);
|
||||
if(generator==nullptr) {
|
||||
if(generator==nullptr && lt!=nullptr) {
|
||||
strftime(buffer, sizeof(buffer), "%Y-%m-%d", lt);
|
||||
fprintf(f, pattern, prefix, prefix, filename, prefix, prefix, buffer);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue