[geany/geany-plugins] 12eaa2: scope - fixed a bug in array size emulation
Dimitar Zhekov
git-noreply at xxxxx
Thu Mar 7 19:55:30 UTC 2013
Branch: refs/heads/master
Author: Dimitar Zhekov <dimitar.zhekov at gmail.com>
Committer: Dimitar Zhekov <dimitar.zhekov at gmail.com>
Date: Thu, 07 Mar 2013 19:55:30 UTC
Commit: 12eaa22be7a73634c62308d33d148db6c18b07a3
https://github.com/geany/geany-plugins/commit/12eaa22be7a73634c62308d33d148db6c18b07a3
Log Message:
-----------
scope - fixed a bug in array size emulation
Modified Paths:
--------------
scope/src/gtk216.c
Modified: scope/src/gtk216.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -31,7 +31,7 @@
static ArraySize *find_array_size(GArray *array)
{
- gchar *end = array_sizes->data + sizeof(ArraySize) * array->len;
+ gchar *end = array_sizes->data + sizeof(ArraySize) * array_sizes->len;
gchar *data;
for (data = array_sizes->data; data < end; data += sizeof(ArraySize))
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list