diff options
| author | jave | 2014-12-28 17:33:38 +0100 |
|---|---|---|
| committer | jave | 2014-12-28 17:33:38 +0100 |
| commit | 703cbed72f82633cf3720ce8ad0523ea3af2c9f5 (patch) | |
| tree | b6ba0487fe9097e2efea4629d76c8661bd417c21 /src/dbusbind.c | |
| parent | 5f46725992bf26f887483c14c63c03f5b5794f34 (diff) | |
| parent | 807c3413c478be964f24b5ecc44712ce3358001e (diff) | |
| download | emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.tar.gz emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.zip | |
Merge branch 'master' into xwidget
Diffstat (limited to 'src/dbusbind.c')
| -rw-r--r-- | src/dbusbind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index 4852739d8e4..983b05c4206 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -357,7 +357,7 @@ xd_signature_cat (char *signature, char const *x) | |||
| 357 | ptrdiff_t xlen = strlen (x); | 357 | ptrdiff_t xlen = strlen (x); |
| 358 | if (DBUS_MAXIMUM_SIGNATURE_LENGTH - xlen <= siglen) | 358 | if (DBUS_MAXIMUM_SIGNATURE_LENGTH - xlen <= siglen) |
| 359 | string_overflow (); | 359 | string_overflow (); |
| 360 | strcat (signature, x); | 360 | strcpy (signature + siglen, x); |
| 361 | } | 361 | } |
| 362 | 362 | ||
| 363 | /* Compute SIGNATURE of OBJECT. It must have a form that it can be | 363 | /* Compute SIGNATURE of OBJECT. It must have a form that it can be |