File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ security features are welcome on GitHub Issues.
21
21
22
22
Security updates will be released on a regular cadence. Many of our projects
23
23
will typically release security fixes in conjunction with the
24
- [ Oracle Critical Patch Update] [ 3 ] program. Additional
24
+ Oracle Critical Patch Update program. Additional
25
25
information, including past advisories, is available on our [ security alerts] [ 4 ]
26
26
page.
27
27
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ const (
26
26
27
27
// GetNsgNamesFromId returns the names of the NSGs with the provided IDs
28
28
func GetNsgNamesFromId (ids []string , nsgs []* infrastructurev1beta2.NSG ) []string {
29
+ if len (ids ) == 0 {
30
+ return nil
31
+ }
29
32
names := make ([]string , 0 )
30
33
for _ , id := range ids {
31
34
for _ , nsg := range nsgs {
You can’t perform that action at this time.
0 commit comments