From 62fc97056887f313ef13ed85d0095dc1b3b69202 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=BCmmel?= Date: Sat, 1 Dec 2012 11:32:50 +0100 Subject: [PATCH] Fix wrong error message count in QDBusError Don't pass the pointer errorMessages_string - 1 to strcmp(). -1 marks the end should not be used for the pointer arithmetic in get(const char *name) Change-Id: I5ec239c63f074d104d441511294554f21fd6eccd Reviewed-by: Thiago Macieira --- src/dbus/qdbuserror.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbus/qdbuserror.cpp b/src/dbus/qdbuserror.cpp index 37523c0..52370e8 100644 --- a/src/dbus/qdbuserror.cpp +++ b/src/dbus/qdbuserror.cpp @@ -142,7 +142,7 @@ static const int errorMessages_indices[] = { }; static const int errorMessages_count = sizeof errorMessages_indices / - sizeof errorMessages_indices[0]; + sizeof errorMessages_indices[0] - 1; static inline const char *get(QDBusError::ErrorType code) { -- 2.7.4