projects
/
platform
/
upstream
/
fontconfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b152a85
)
Fix suspicious return expression which causes junk to be returned.
author
Patrick Lam
<plam@MIT.EDU>
Fri, 3 Mar 2006 06:11:31 +0000
(06:11 +0000)
committer
Patrick Lam
<plam@MIT.EDU>
Fri, 3 Mar 2006 06:11:31 +0000
(06:11 +0000)
reviewed by: plam
ChangeLog
patch
|
blob
|
history
src/fclang.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index
b94b0f6
..
f6b9fa8
100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,11
@@
+2006-03-02 Egmont Koblinger <egmont@uhulinux.hu>
+ reviewed by: plam
+
+ * src/fclang.c (FcCharSetForLang):
+
+ Fix suspicious return expression which causes junk
+ to be returned.
+
2006-02-24 Patrick Lam <plam@mit.edu>
* ChangeLog:
* README:
diff --git
a/src/fclang.c
b/src/fclang.c
index
d7df89d
..
ab8105d
100644
(file)
--- a/
src/fclang.c
+++ b/
src/fclang.c
@@
-216,7
+216,7
@@
FcCharSetForLang (const FcChar8 *lang)
}
if (country == -1)
return 0;
- return &fcLangCharSets[
i
].charset;
+ return &fcLangCharSets[
country
].charset;
}
FcLangSet *