xkbcomp: Don't segfault if the debug files aren't set Another interface that needs to be cleaned up.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
diff --git a/src/xkbcomp/utils.c b/src/xkbcomp/utils.c
index 55efbe1..34ba8e0 100644
--- a/src/xkbcomp/utils.c
+++ b/src/xkbcomp/utils.c
@@ -120,6 +120,9 @@ uEntry(int l, char *s, ...)
int i;
va_list args;
+ if (!entryFile)
+ return;
+
for (i = 0; i < uEntryLevel; i++)
{
putc(' ', entryFile);
@@ -135,6 +138,9 @@ uExit(int l, char *rtVal)
{
int i;
+ if (!entryFile)
+ return;
+
uEntryLevel -= l;
if (uEntryLevel < 0)
uEntryLevel = 0;
@@ -180,6 +186,9 @@ uDebug(char *s, ...)
int i;
va_list args;
+ if (!uDebugFile)
+ return;
+
for (i = (uDebugIndentLevel * uDebugIndentSize); i > 0; i--)
{
putc(' ', uDebugFile);
@@ -195,6 +204,9 @@ uDebugNOI(char *s, ...)
{
va_list args;
+ if (!uDebugFile)
+ return;
+
va_start(args, s);
vfprintf(uDebugFile, s, args);
va_end(args);
@@ -234,6 +246,9 @@ uInformation(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
va_start(args, s);
vfprintf(errorFile, s, args);
va_end(args);
@@ -247,6 +262,9 @@ uAction(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
if (prefix != NULL)
fprintf(errorFile, "%s", prefix);
fprintf(errorFile, " ");
@@ -263,6 +281,9 @@ uWarning(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
if (prefix != NULL)
@@ -282,6 +303,9 @@ uError(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
if (prefix != NULL)
@@ -301,6 +325,9 @@ uFatalError(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
if (prefix != NULL)
@@ -323,6 +350,9 @@ uInternalError(const char *s, ...)
{
va_list args;
+ if (!errorFile)
+ return;
+
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
if (prefix != NULL)
@@ -360,7 +390,7 @@ uSetErrorPrefix(char *pre)
void
uFinishUp(void)
{
- if ((outCount > 0) && (postMsg != NULL))
+ if (errorFile && (outCount > 0) && (postMsg != NULL))
fprintf(errorFile, "%s\n", postMsg);
return;
}