summaryrefslogtreecommitdiff
path: root/src/category.c
diff options
context:
space:
mode:
authorDmitry Antipov <dmantipov@yandex.ru>2014-09-16 15:43:49 +0400
committerDmitry Antipov <dmantipov@yandex.ru>2014-09-16 15:43:49 +0400
commit3e67a981c4f45cf960a93e31010253b33bcdbaf5 (patch)
treebbae14abf04e5443af7644b89ed5c60d69971af1 /src/category.c
parentb98b1a831bcfc89f038cbb8048c6969d8c73ab28 (diff)
downloademacs-3e67a981c4f45cf960a93e31010253b33bcdbaf5.tar.gz
Avoid more integer overflows on string size calculations.
* category.c (Fmake_category_set): * xdisp.c (get_overlay_arrow_glyph_row): * w32font.c (intern_font_name): Prefer ptrdiff_t to int.
Diffstat (limited to 'src/category.c')
-rw-r--r--src/category.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c
index 851ae1a4c24..a4610e4d358 100644
--- a/src/category.c
+++ b/src/category.c
@@ -96,7 +96,7 @@ those categories. */)
(Lisp_Object categories)
{
Lisp_Object val;
- int len;
+ ptrdiff_t len;
CHECK_STRING (categories);
val = MAKE_CATEGORY_SET;