summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-05-07 08:08:35 -0400
committerJames Moger <james.moger@gitblit.com>2013-05-07 08:08:35 -0400
commit5c36f8425345b48adc354def8ed1443b4a236a20 (patch)
tree8491af12158e56d8dd8f03ef218bf2cbb080cabf
parentffbf03175ba1154ba5984d7c473cf1ac4130c043 (diff)
downloadgitblit-5c36f8425345b48adc354def8ed1443b4a236a20.tar.gz
gitblit-5c36f8425345b48adc354def8ed1443b4a236a20.zip
[authority] Fixed out of bounds exception on cert generation for a filtered user
-rw-r--r--releases.moxie1
-rw-r--r--src/main/java/com/gitblit/authority/GitblitAuthority.java4
2 files changed, 3 insertions, 2 deletions
diff --git a/releases.moxie b/releases.moxie
index 53aef4bc..0ac22c6f 100644
--- a/releases.moxie
+++ b/releases.moxie
@@ -12,6 +12,7 @@ r17: {
- Added more error checking to blob page and blame page
- Disable SNI extensions for client SSL connections
- Fixed prettify language extension loading
+ - Fixed index out of bounds exceptions when generating client certificates for a user when the user's table has bene filtered
- Use bash instead of sh in Linux/OSX shell scripts (issue 154)
- Fix NPE when getting user's fork without repository list caching (issue 182)
- Fix internal error on folder history links (issue 192)
diff --git a/src/main/java/com/gitblit/authority/GitblitAuthority.java b/src/main/java/com/gitblit/authority/GitblitAuthority.java
index 1a1f96db..1c0c142f 100644
--- a/src/main/java/com/gitblit/authority/GitblitAuthority.java
+++ b/src/main/java/com/gitblit/authority/GitblitAuthority.java
@@ -464,9 +464,9 @@ public class GitblitAuthority extends JFrame implements X509Log {
// refresh user
ucm.certs = null;
- int modelIndex = table.convertRowIndexToModel(table.getSelectedRow());
+ int selectedIndex = table.getSelectedRow();
tableModel.fireTableDataChanged();
- table.getSelectionModel().setSelectionInterval(modelIndex, modelIndex);
+ table.getSelectionModel().setSelectionInterval(selectedIndex, selectedIndex);
if (sendEmail) {
sendEmail(user, metadata, zip);