1
0
mirror of https://github.com/git/git.git synced 2024-09-26 19:51:07 +02:00

use xstrdup please

We generally prefer xstrdup to just plain strdup.
Make it so.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Shawn O. Pearce 2007-03-15 21:02:51 -04:00 committed by Junio C Hamano
parent 9debc3241b
commit dbb2b41aa4

View File

@ -351,12 +351,12 @@ int git_default_config(const char *var, const char *value)
}
if (!strcmp(var, "i18n.commitencoding")) {
git_commit_encoding = strdup(value);
git_commit_encoding = xstrdup(value);
return 0;
}
if (!strcmp(var, "i18n.logoutputencoding")) {
git_log_output_encoding = strdup(value);
git_log_output_encoding = xstrdup(value);
return 0;
}