mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
Revert "os: xstrtokenize takes and returns const char * now"
This reverts commit d0339a5c66.
seriously, what the fuck? Are we making xstrdup() return a const char now too?
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
@@ -246,7 +246,7 @@ padding_for_int32(const int bytes)
|
||||
}
|
||||
|
||||
|
||||
extern const char **xstrtokenize(const char *str, const char *separators);
|
||||
extern char **xstrtokenize(const char *str, const char *separators);
|
||||
extern void FormatInt64(int64_t num, char *string);
|
||||
extern void FormatUInt64(uint64_t num, char *string);
|
||||
extern void FormatUInt64Hex(uint64_t num, char *string);
|
||||
|
||||
@@ -1973,10 +1973,10 @@ CheckUserAuthorization(void)
|
||||
* Tokenize a string into a NULL terminated array of strings. Always returns
|
||||
* an allocated array unless an error occurs.
|
||||
*/
|
||||
const char **
|
||||
char **
|
||||
xstrtokenize(const char *str, const char *separators)
|
||||
{
|
||||
const char **list, **nlist;
|
||||
char **list, **nlist;
|
||||
char *tok, *tmp;
|
||||
unsigned num = 0, n;
|
||||
|
||||
@@ -2004,7 +2004,7 @@ xstrtokenize(const char *str, const char *separators)
|
||||
error:
|
||||
free(tmp);
|
||||
for (n = 0; n < num; n++)
|
||||
free((void *) list[n]);
|
||||
free(list[n]);
|
||||
free(list);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user