From 75796a0e2798e256a94f725961c9676746fc107a Mon Sep 17 00:00:00 2001
From: Hybris95 <hybris_95@hotmail.com>
Date: Thu, 01 May 2014 16:14:14 -0400
Subject: [PATCH] Added git stylesheets to MyTickets. Added links to Repositories containing the tickets.

---
 src/main/java/com/gitblit/utils/JGitUtils.java |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/gitblit/utils/JGitUtils.java b/src/main/java/com/gitblit/utils/JGitUtils.java
index 0cee70d..190872a 100644
--- a/src/main/java/com/gitblit/utils/JGitUtils.java
+++ b/src/main/java/com/gitblit/utils/JGitUtils.java
@@ -2256,8 +2256,10 @@
 			}
 		} catch (IOException e) {
 			LOGGER.error("Failed to determine canMerge", e);
-		} finally {
-			revWalk.release();
+		} finally {
+			if (revWalk != null) {
+				revWalk.release();
+			}
 		}
 		return MergeStatus.NOT_MERGEABLE;
 	}
@@ -2347,8 +2349,10 @@
 			}
 		} catch (IOException e) {
 			LOGGER.error("Failed to merge", e);
-		} finally {
-			revWalk.release();
+		} finally {
+			if (revWalk != null) {
+				revWalk.release();
+			}
 		}
 		return new MergeResult(MergeStatus.FAILED, null);
 	}

--
Gitblit v1.9.1